Home  >  Article  >  Web Front-end  >  How to pass parameters in Javascript attachEvent_javascript skills

How to pass parameters in Javascript attachEvent_javascript skills

WBOY
WBOYOriginal
2016-05-16 18:39:061046browse
Copy code The code is as follows:

var newopen = function(id,level)
{
return function()
{
opentree(id,level);//This function is an execution function defined externally;
}
}
x.attachEvent("onclick", newopen(id,parseInt(level) 1));
y.attachEvent("onclick",newopen(id,parseInt(level) 2));

IE only wants to know the compatibility For the code, you can refer to Script House’s previous articles.
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn