DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jquery中each方法教程示例和常用選擇器
jquery中each方法教程示例和常用選擇器
編輯:JQuery特效代碼     
 <head> 
<title></title> 

<script src="jquery-1.4.2.js" type="text/javascript"></script> 
<script type="text/javascript"> 

$(function() { 
//alert($("div").text()); 
//對數組元素使用匿名函數進行逐個處理。 
$("div").each(function(key, value) { 
//alert(key+value); 
// alert($(value).text()); 
alert(this.innerHTML); 
}); 
//this表示當前遍歷的dom元素 
$("div").each(function() { 
alert($(this).text()); 
}); 
}); 
</script> 
</head> 
<body> 
<div id="testDom">11111</div> 
<div>2222</div> 
<div>33333</div> 
</body>

常用選擇器:

1.類:$(".error").
2.id:$("#daLong").
3.標簽:$("div").
4.屬性:$("div[name=apple]").
5.表單:$("input:checked").

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved