今後あまり使う機会は無いだろうけどメモ。
id="ほげ" のチェックボックスにチェックが入ると
id="ほげほげ" に連動してチェックがはいる。
jQuery(function() {
jQuery("#ほげ").click(function(){
jQuery("#ほげほげ").prop("checked", jQuery(this).prop('checked') );
});
});
Go to list of users who liked
More than 5 years have passed since last update.
今後あまり使う機会は無いだろうけどメモ。
id="ほげ" のチェックボックスにチェックが入ると
id="ほげほげ" に連動してチェックがはいる。
jQuery(function() {
jQuery("#ほげ").click(function(){
jQuery("#ほげほげ").prop("checked", jQuery(this).prop('checked') );
});
});
Register as a new user and use Qiita more conveniently
Go to list of users who liked