我想打开没有地址栏的新窗口

时间:2015-06-29 10:51:31

标签: javascript jquery

var myWindow = window.open("","myWindow","ttilebar=no,location=no,status=no,menubar=no,width=306,height=325,margin-top:0px,margin-left=0px,left="+left+"px, top="+top+"px,toolbar=no, scrollbars=no, resizable=no");
    myWindow.document.write('<iframe style="width:306px;height:342px;" id="CCBox"'
            + 'class="ifti1" src="http://localhost:8089/clientChatbox?user='
            + encodeURI(JSON.stringify(user))
            + '"frameborder="0" '
            + '></iframe>');

我想打开它没有标题和地址栏。

2 个答案:

答案 0 :(得分:1)

由于存在安全问题,现在在所有现代浏览器中都可能无法实现。请查看以下网址了解更多详情:

Hiding address bar in all browsers

Open new popup window without address bars in firefox & IE

答案 1 :(得分:0)

礼貌:Comment from Stackoverflow

每个浏览器都有所不同。

几年前,你尝试过的,是对的。但是现在它被视为一种安全风险,人们无法看到浏览器地址栏和(因为网络钓鱼的原因),因此他们(或大多数人)决定始终显示浏览器地址栏。