Jquery學習總結

來源:互聯網
上載者:User
入門文章:

http://www.k99k.com/jQuery_getting_started.html

$(document).ready(function() {

$("a").click(function() {

alert("Hello world!");

});

});

這樣在你點擊頁面的一個連結時都會觸發這個"Hello world"的提示。

$("a") 是一個jQuery選取器(selector),在這裡,它選擇所有的a標籤(即<a></a>)

$("#orderedlist")等價於document.getElementById("orderedlist")

$("#orderedlist").addClass("red");

為id為orderedlist的節點添加red樣式類 。

$('.poem-stanza').addClass("red");

為class為poem-stanza的所有元素添加red樣式類 。

$(document).ready(function() {

$("#orderedlist").find("li").each(function(i) {

$(this).html( $(this).html() + " BAM! " + i );

});

});




在頁面載入完畢後,遍曆id為orderedlist的節點的所有li子節點,




並對每個子節點的Html文本重新賦值。




.html()方法是擷取對象的html代碼,而.html('xxx')是設定'xxx'為對象的html代碼




jQuery的一些特性和用法:




1.精準簡單的選擇對象(dom):



$('#element');// 相當於document.getElementById("element")

$('.element');//Class
$('p');//html標籤
$("form > input");//子物件
$("div,span,p.myClass");//同時選擇多種對象
$("tr:odd").css("background-color", "#bbbbff");//表格的隔行背景
$(":input");//表單對象
$("input[name='newsletter']");//特定的表單對象
2.對象函數的應用簡單和不限制:
element.function(par);
$(”p.surprise”).addClass(”ohmy”).show(”slow”)...
3.對已選擇對象的操作(包括樣式):
$("#element").addClass("selected");//給對象添加樣式
$('#element').css({ "background-color":"yellow", "font-weight":"bolder" });//改變對象樣式
$("p").text("Some new text.");//改變對象文本
$("img").attr({ src: "test.jpg", alt: "Test Image" });//改變對象文本
$("p").add("span");//給對象增加標籤
$("p").find("span");//尋找對象內部的對應元素
$("p").parent();//對象的父級元素
$("p").append("<b>Hello</b>");//給對象新增內容
4.支援aJax,支援檔案格式:xml/html/script/json/jsonp
$("#feeds").load("feeds.html");//相應地區匯入靜態頁內容
$("#feeds").load("feeds.php", {limit: 25}, function() {alert("The last 25 entries in the feed have been loaded");});//匯入動態內容
4.對事件的支援:
$("p").hover(function () {
      $(this).addClass("hilite");//滑鼠放上去時
    }, function () {
      $(this).removeClass("hilite");//移開滑鼠
    });//滑鼠放上去和移開的不同效果(自動迴圈所有p對象
5.動畫:
$("p").show("slow");//隱藏對象(慢速漸層)
$("#go").click(function(){
$("#block").animate({
    width: "90%",
    height: "100%",
    fontSize: "10em"
}, 1000 );
});//滑鼠點擊後寬、高、字型的動態變化
6.擴充:
$.fn.background = function(bg){
    return this.css('background', bg);
};
$(#element).background("red");
如果要為每一個jQuery 對象添加一個函數,必須把該函數指派給 $.fn,同時這個函數必須要返回一個 this(jQuery 對象)








聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.