JQueryはbootstrapチェックボックスCheckBoxの全選択と逆選択を実現
最近時間があったら、自分が作ったプロジェクトを整理します~これはある学院のファイルシステムプロジェクトです.あまりしゃべらずに本題に入る
これについて、何か質問があればコメントしてください(
悪くないと思うけどいいね~ありがとう(
<div style="margin-left: 20px;display : inline">
<a class="btn btn-mini btn-info" th:value="${entity['card'].cardName}"
onclick="directElection(this)"> a>
<a class="btn btn-mini btn-warning" th:value="${entity['card'].cardName}"
onclick="reverseElection(this)"> div>
//
function directElection(object) {
let value = $(object).attr('value');
$('input[name="' + value + '"]').each(function () {
// $(this).attr('checked', true); bootstrap web : cheched , “√”,
// , , , prop , bug, 。
this.checked = true;
});
};
//
function reverseElection(object) {
let value = $(object).attr('value');
$('input[name="' + value + '"]').each(function () {
this.checked = !this.checked;
});
};
これについて、何か質問があればコメントしてください(
悪くないと思うけどいいね~ありがとう(