×

jquery中each方法示例和常用选择器

作者:Terry2017.02.04来源:Web前端之家浏览:9719评论:0
关键词:JQueryJS
 <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").

您的支持是我们创作的动力!
温馨提示:本文作者系Terry ,经Web前端之家编辑修改或补充,转载请注明出处和本文链接:
https://jiangweishan.com/article/svg1486137600727.html

网友评论文明上网理性发言 已有0人参与

发表评论: