有什么办法可以避免$("#check1")
在下面的语句中使用第二次?
$("#check1").prop("checked",!$("#check1").prop("checked"));
通过任何技巧我可以做类似下面的事情吗?
$("#check1").prop("checked",!this.prop("checked"));
有什么办法可以避免$("#check1")
在下面的语句中使用第二次?
$("#check1").prop("checked",!$("#check1").prop("checked"));
通过任何技巧我可以做类似下面的事情吗?
$("#check1").prop("checked",!this.prop("checked"));
如果您将函数作为回调传递,您将获得当前值。
$("#check1").prop("checked", function(i, value) {
return !value;
});
.prop( propertyName, function(index, oldPropertyValue) )
propertyNameThe name of the property to set.
function(index, oldPropertyValue) A function returning the value to set. Receives the index position of the element in the set and the old property value as arguments. Within the function, the keyword this refers to the current element.
var el = $("#check1");
el.prop("checked",!el.prop("checked"));
var $check = $("#check1");
$check.prop( "checked", !$check.prop("checked") );
您可以使用它,但通过这种方式:
$("#check1").prop("checked",!$(this).prop("checked"));