ev就是Event 对象的缩写
Event 对象代表事件的状态,比如事件在其中发生的元素、键盘按键的状态、鼠标的位置、鼠标按钮的状态。
事件通常与函数结合使用,函数不会在事件发生前被执行!
例子:
window.onload=function () {
var oDiv=document.getElementById("div1");
var oBtn=document.getElementById("btn1");
oBtn.onclick=function (ev) { //ev要与下面oEvent=ev||event里的ev相同,如果写ev2就会出现错误
var oEvent=ev||event;
oDiv.style.display="block";
oEvent.cancelBubble=true;
};
document.onclick=function () {
oDiv.style.display="none"
}
}