윈도우를 대체합니다.event.srcElement 효과의 호환성 함수

825 단어
 
  
function getEvent()
{
var i = 0;
if(document.all){
return window.event;
}

func = getEvent.caller;
while(func != null)
{
var arg0 = func.arguments[0];
if(arg0)
{
if(arg0.constructor == MouseEvent)
{
return arg0;
}
}
func = func.caller;
}
return null;
}

함수에서 참조하려면 e를 참조해야 합니다.
 
  
function buttonOver(e)
{
e = getEvent();
var obj = e.srcElement || e.target;
if (obj.runtimeStyle){
obj.runtimeStyle.cssText = "background-color:#FFFFFF";
}
else
obj.style.background = "#FFFFFF";
}

좋은 웹페이지 즐겨찾기