How to open a browser window without any bars like address bars, bookmarks bars etc in javascript?

故事扮演 提交于 2019-12-05 15:23:41

问题


I am looking to open a url (html file) without any kind of address bars, bookmarks bar so that the user just sees the application window. Is there a way to do so?


回答1:


window.open(url,'window','toolbar=no, menubar=no, resizable=yes');

You can read about these and more of the options here.



来源:https://stackoverflow.com/questions/31710446/how-to-open-a-browser-window-without-any-bars-like-address-bars-bookmarks-bars

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!