JS function document.onclick(){}报错Syntax error on token "function", delete this token
function document.onclick() //任意点击时关闭该控件
//ie6的情况可以由下面的切换焦点处理代替
{
with(window.event)
{ if (srcElement != outObject && srcElement != outButton)
closeLayer();
}
}
更改为:
document.onclick=function()//任意点击时关闭该控件 //ie6的情况可以由下面的切换焦点处理代替
{
with(window.event)
{ if (srcElement != outObject && srcElement != outButton)
closeLayer();
}
};
、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、
document.onkeyup=function() //按Esc键关闭,切换焦点关闭
{
if (window.event.keyCode==27){
if(outObject)outObject.blur();
closeLayer();
}
else if(document.activeElement)
if(document.activeElement != outObject && document.activeElement != outButton)
{
closeLayer();
}
};