-
呼啦一阵风
e是事件,在firefox中只能在事件现场使用window.event,所以只有把event传给函数使用。为了兼容FF和其它浏览器,一般会在函数里重新给e赋值:e = window.event || e;也就是说,如果window.event存在,则该浏览器支持直接使用window.event,否在就是不支持,不支持就使用传进来的e。如下代码:<SCRIPT LANGUAGE="JavaScript"><!--window.onload = function(e){//alert(window.event.type) // IE时调用,非IE注释掉否则报错alert(e.type); // FF时调用,非FF注释掉否则报错// 由于这里的事件是window.onload ,所以打印type两个都会显示”load“。}//--></SCRIPT>
-
江户川乱折腾
1.形参。12345function fn(e){//这里的e 是形参,接收调用方法的值,这里e可以理解指代element console.log(e); // 'help'}fn('help');2.事件。1234567$(function(){ $("#mybutton").on("click mouseover",function(e){ alert(e.type) //在触发该事件的时候,系统会给传给你这个参数,他包含了触发该事件的一些信息 //这里e指代event })})
-
梦里花落0921
e是一个函数的标记,<html><body><script>var index=1;//默认调用第一个function f1(){alert(1);}function f2(){alert(2);}function f3(){alert(3);}function test(){if (index>3){//防止超出index=1;}eval('f'+index+'();');index++;}</script><input type='button' onclick='test()' value='test'/></body></html>0