jquery 如何传递对象本身?

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

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

function RadioSelect(this) {

debugger;

$(this).removeAttr('checked');

}