如何用JS实现IE浏览器中F11的全屏功能
试试这个
if (event.keyCode==122){event.keyCode=0;event.returnValue=false;} //屏蔽F11
直接使IE全屏是做不到的,只能新打开一个当前窗口并使打开的窗口全屏
window.open(location.href,'','fullscreen=1') ;
window.open("http://www.baidu.com","","fullscreen=yes");
详解请看我blog中的 window.open方法