jquery循环方法
标签:jquer click for set ever div type onclick query
DOCTYPE html>
html lang="en">
head>
meta charset="UTF-8">
title>Titletitle>
head>
body>
p>p1p>
p>p2p>
p>p3p>
script src="jquery-3.3.1.js">script>
script>
attr=[11,22,33]
// for (var i=0;i// $(‘p‘).eq(i).html(attr[i]);
// }; // js可以混用jquery
// jquery循环方式一
$.each(attr,function (x,y) {
console.log(x); // 0 1 2
console.log(y); // 11 22 33
});
// jquery循环方式二
$(‘p‘).each(function () {
console.log($(this));
$(this).html(‘p‘);
}); // 对三个p标签进行循环,$this表示的是每个p标签,对标签的循环用的更多一些
script>
button onclick="selectAll()">全选button>
button onclick="reverse()">反选button>
button onclick="cancel1()">取消button>
table border="1px">
tr>
td>input type="checkbox">td>
td>111td>
tr>
tr>
td>input type="checkbox">td>
td>222td>
tr>
tr>
td>input type="checkbox">td>
td>333td>
tr>
table>
script>
function selectAll() {
$(‘:checkbox‘).each(function () {
$(this).prop(‘checked‘,true);
})
};
function cancel1() {
$(‘:checkbox‘).each(function () {
$(this).prop(‘checked‘,false);
})
};
function reverse() {
$(‘:checkbox‘).each(function () {
if ($(this).prop(‘checked‘)) {
$(this).prop(‘checked‘,false)
}else{
$(this).prop(‘checked‘,true)
}
})
};
script>
body>
html>
jquery循环方法
标签:jquer click for set ever div type onclick query
原文地址:https://www.cnblogs.com/xuewei95/p/15041847.html
文章来自:
搜素材网的
编程语言模块,转载请注明文章出处。
文章标题:
jquery循环方法
文章链接:http://soscw.com/index.php/essay/106985.html
评论