jquery 如何传递对象本身作为参数的例子:
<input type="radio" name="aaa" value="1" onclick="RadioSelect($(this))”/>
function RadioSelect(this) {
debugger;
$(this).removeAttr(‘checked‘);
}
时间: 2024-11-10 01:25:50
jquery 如何传递对象本身作为参数的例子:
<input type="radio" name="aaa" value="1" onclick="RadioSelect($(this))”/>
function RadioSelect(this) {
debugger;
$(this).removeAttr(‘checked‘);
}