我知道的方式:
HTML:
<input type="button" id="msg" onclick="foo(this);" />
JS:
function foo(elementObj) { elementObj.toggle(); }
有没有办法在不将其作为函数参数传递的情况下获取对elementObj
内部的引用?foo()
我想怎么做:
HTML:
<input type="button" id="msg" onclick="foo();" />
JS:
function foo() { elementObj = <any way I can get ref to html element here?>; elementObj.toggle(); }
附言
调用函数如下:$("#msg").click(function(elementObj ) {elementObj.toggle();}
不是我需要的。