メモ:全選択操作と簡易検証コード
14596 ワード
すべて選択
2.簡易検証コード
js実装//検証コード
クリックして呼び出す
<script>
$(function () {
//
$(".checkAll").click(function () {
if ($(".checkAll").is(":checked")) {
$(".check1").each(function () {
$(this).prop("checked",true);
})
} else {
$(".check1").each(function () {
$(this).prop("checked",false);
})
}
})
//
$(".delete").click(function () {
$(".check1").each(function () {
if ($(this).is(":checked")) {
$(this).parent().parent().remove();
}
})
})
})
</script>
2.簡易検証コード
<span class="btn btn-warning" id="yzm">
<span id="yzmTar"></span>
</span>
js実装//検証コード
function yzm() {
var arr = ['A', 'B', 'C', 'D', 'E', 'F', 'G',
'H', 'I', 'J', 'K', 'L', 'M', 'N',
'O', 'P', 'Q', 'R', 'S', 'T',
'U', 'V', 'W', 'X', 'Y', 'Z',
'a', 'b', 'c', 'd', 'e', 'f', 'g',
'h', 'i', 'j', 'k', 'l', 'm', 'n',
'o', 'p', 'q', 'r', 's', 't',
'u', 'v', 'w', 'x', 'y', 'z',
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'];
var str = '';
for (var i = 0; i < 4; i++)
str += '' + arr[Math.floor(Math.random() * arr.length)];
return str;
}
クリックして呼び出す