标签:cti checked blog class 需求 logs cli 状态 jquer
由于项目的需求,要求radio点击两次后为取消状态,不方便修改为checkbox,可以用正面的方法实现。
// jquery $(‘input:radio‘).click(function(){ //alert(this.checked); // var $radio = $(this); // if this was previously checked if ($radio.data(‘waschecked‘) == true){ $radio.prop(‘checked‘, false); $radio.data(‘waschecked‘, false); } else { $radio.prop(‘checked‘, true); $radio.data(‘waschecked‘, true); } });
标签:cti checked blog class 需求 logs cli 状态 jquer
原文地址:http://www.cnblogs.com/ymmt/p/6835180.html