如何同时传event以及其他参数
有时方法需要同时传递event防止冒泡和其他参数,因此可以将方法进行封装。function x(e,str){ var a=e||window.event; if(a.stopPropagation){ a.stopPropagation(); }else{ a.cancelBubble=true; } alert(str);