You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
/*
|
|
|
|
|
<EFBFBD><EFBFBD><EFBFBD><EFBFBD>:ʹMainFrameʼ<EFBFBD>ջ<EFBFBD><EFBFBD>ý<EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
*/
|
|
|
|
|
document.onkeydown=keyDown;
|
|
|
|
|
function keyDown()
|
|
|
|
|
{ // alert(typeof(parent.frames['MainFrame']));
|
|
|
|
|
if ((event.ctrlKey)||(event.altKey)||(event.keyCode==46))
|
|
|
|
|
{
|
|
|
|
|
if (typeof(parent.frames['MainFrame'])=='object')
|
|
|
|
|
{
|
|
|
|
|
parent.frames['MainFrame'].focus();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
top.frames['MainFrame'].focus();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//<2F><><EFBFBD><EFBFBD><EFBFBD>Ҽ<EFBFBD><D2BC><EFBFBD><EFBFBD>Խ<EFBFBD>ֹ<EFBFBD><D6B9>
|
|
|
|
|
if (window.Event)
|
|
|
|
|
document.captureEvents(Event.MOUSEUP);
|
|
|
|
|
function nocontextmenu()
|
|
|
|
|
{
|
|
|
|
|
event.cancelBubble = true
|
|
|
|
|
event.returnValue = false;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
function norightclick(e)
|
|
|
|
|
{
|
|
|
|
|
if (window.Event)
|
|
|
|
|
{
|
|
|
|
|
if (e.which == 2 || e.which == 3)
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
if (event.button == 2 || event.button == 3)
|
|
|
|
|
{
|
|
|
|
|
event.cancelBubble = true
|
|
|
|
|
event.returnValue = false;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
document.oncontextmenu = nocontextmenu; // for IE5+
|
|
|
|
|
document.onmousedown = norightclick; // for all others
|