单选按钮选中取消
Posted ming-blogs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了单选按钮选中取消相关的知识,希望对你有一定的参考价值。
<input type="radio" name="xxx">
$(function() {
$(‘input:radio’).click(function () {
//alert(this.checked);
var domName = $(this).attr(‘name‘);
var $radio = $(this);
// if this was previously checked
if ($radio.data(‘waschecked‘) == true) {
console.log($radio.data(‘waschecked‘) == true);
$radio.prop(‘checked‘, false);
//$("input:radio[name=‘radio" + domName + "‘]").data(‘waschecked‘,false);
$radio.data(‘waschecked‘, false);
} else {
console.log($radio.data(‘waschecked‘) == true);
$radio.prop(‘checked‘, true);
//$("input:radio[name=‘radio" + domName + "‘]").data(‘waschecked‘,true);
$radio.data(‘waschecked‘, true);
}
});
});
以上是关于单选按钮选中取消的主要内容,如果未能解决你的问题,请参考以下文章