jquery 如何传递对象本身

jquery 如何传递对象本身作为参数的例子:

<input type="radio" name="aaa" value="1" onclick="RadioSelect($(this))”/>

function RadioSelect(this) {
debugger;
$(this).removeAttr('checked');

}

原文地址:https://www.cnblogs.com/redfull/p/6909970.html