Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
242 views
in Technique[技术] by (71.8m points)

javascript - I want to open new window with no address bar

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>');

I want to open it in with no title and no address bar.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Because of security issue, this may not be possible now in all modern browsers. Look at below urls for more details:

Hiding address bar in all browsers

Open new popup window without address bars in firefox & IE


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...