本文介绍了如何打开浏览器窗口,没有任何酒吧,如地址栏,书签酒吧等在javascript?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在打开一个没有任何地址栏,书签栏的URL(html文件),以便用户只看到应用程序窗口。有没有办法这样做?

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?

推荐答案

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

您可以阅读这些和更多的选项。

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

这篇关于如何打开浏览器窗口,没有任何酒吧,如地址栏,书签酒吧等在javascript?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 15:23