分类: Java
2010-03-10 08:57:21
window.open("yourZKWebPage","windowName","width=200,height=100,toolbar=no,location=no,directories=no ,status=yes,menubar=no,scrollbars=no,resizable=yes");function keydown() {
if ((window.event.ctrlKey) || (window.event.shiftKey) || (window.event.keyCode==18) || ((window.event.keyCode>=112) && (window.event.keyCode<=123))) {
if (window.confirm("Shortcuts are not allowed ! \nDo you want to exit this great site ?" ))
top.close();
else {
setTimeout("form.focus();",30);
window.event.returnValue = false;
}
}
}
document.onkeydown= keydown //All Keys are checked |