jQuery实现radio点击选中,再次点击取消选中

$('input:radio').click(function(){	                
	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);
	}
});

 

你可能感兴趣的:(前端)