js如何给按钮添加事件调用有参函数
有个按钮aa,和一个自定义函数settd();
添加无参函数可以aa.onmousedown=settd;
为什么有参不可以aa.onmousedown=settd( "value ");
好像是因为settd( "value ")就直接调用了函数,不是添加到aa的事件里面了;
请问调用有参应该怎样写
------解决方案--------------------aa.onmousedown=function(){settd( "value ");}
------解决方案--------------------为什么?
------解决方案--------------------有分吗.