這篇文章主要介紹了jquery中each方法使用及常用選擇器都有哪些,需要的朋友,可以參考下
<head> <title></title> <script src="jquery-1.4.2.js" type="text/javascript"></script> <script type="text/javascript"> $(function() { //alert($("p").text()); //对数组元素使用匿名函数进行逐个处理。 $("p").each(function(key, value) { //alert(key+value); // alert($(value).text()); alert(this.innerHTML); }); //this表示当前遍历的dom元素 $("p").each(function() { alert($(this).text()); }); }); </script> </head> <body> <p id="testDom">11111</p> <p>2222</p> <p>33333</p> </body>
常用選擇器:
1.類別:$(".error").
2.id:$("#daLong").
3.標籤:$("p" ).
4.屬性:$("p[name=apple]").
5.表單:$("input:checked").
以上是jquery中each方法範例和常用選擇器的詳細內容。更多資訊請關注PHP中文網其他相關文章!