源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

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

  • 时间:2021-03-31 20:30 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:jquery中each方法示例和常用选择器
 <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").
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部