经常在一些Function中的变量中看到event但在调用这个Function的时候却没有对这个函数进行传值,列
window.onload=function(){
var mot = document.getElementById('mousemat');
mot.onmousemove=mouseObserver; //这里进行调用的时候为什么没有传值?
}
function mouseObserver(event) //声名时候的event是什么含义?
{
............
}
希望大家指教,谢谢:)