我的代码是这样的
$(document).ready(function(){
nodeClick(elm = '');
});
function nodeClick()
{
if(elm != ''){
var obj = '';
}else{
obj = $('.hitarea')
}
obj.live('click',function(){
$(this).addClass('something');
$(this).attr('something',1);
//lots of this reference are here
});
}
如果 elm 变量为空,我需要自动调用 click 函数,即不点击。如何在不点击的情况下触发该函数