因爲項目的需求,要求radio點擊兩次後爲取消狀態,不方便修改成checkbox,能夠用正面的方法實現。jquery
// 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); } });