当前位置: 技术问答>java相关
请问:在一个新打开的浏览页面中,如何把菜单项中的‘另存为’给封了!
来源: 互联网 发布时间:2015-07-23
本文导语: 谢谢! | function toFull(){ if(window.name=="fullscreen")return; var a =window.open("","fullscreen","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=800,height=600,top="+((screen.height-600)/2)+...
谢谢!
|
function toFull(){
if(window.name=="fullscreen")return;
var a =window.open("","fullscreen","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=800,height=600,top="+((screen.height-600)/2)+",left="+((screen.width-800)/2))
a.location = window.location.href
window.opener=null
window.close()
}
toFull();
//在这儿填写具体内容
|
no way
|
没有。