jQuery-如何找到drag="true" 并且 index="1" 或 无index属性的div
<div drag="true" index="1"></div>
<div drag="true" index="2"></div>
<div drag="true"></div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
测试通过
<script type="text/javascript" src="./jquery.js"></script>
<script>
$(function(){
$('div').filter(function (index) {
return $(this).attr("drag") == "true" && (($(this).attr("index") == "1") || $(this).attr("index") == undefined);
}).html("nnnnnn");
});
</script>
<div drag="true" index="1">hasdrag&1</div>
<div drag="true">hasdrag</div>
<div>yyyyyyy</div>
JQuery的选择器那么强大,直接用它就能满足你的要求:已测试
var obj = $('div[drag=true][index=1],div[drag=true]div:not([index])');
测试代码:
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script language="javascript">
$(function(){
var obj = $('div[drag=true][index=1],div[drag=true]div:not([index])');
console.log(obj);
});
</script>
</head>
<body>
<div drag="true" index="1"></div>
<div drag="true" index="2"></div>
<div drag="true"></div>
<div index="1"></div>
</body>
</html>