Window.toolbar - Web APIs 编辑

The Window.toolbar property returns the toolbar object, whose visibility can be toggled in the window.

Syntax

objRef = window.toolbar

Example

This deprecated API should no longer be used, but will probably still work. The following complete HTML example shows way that the visible property of the various "bar" objects is used, and also the change to the privileges necessary to write to the visible property of any of the bars on an existing window. Due to deprecation of enablePrivilege this functionality can not be used in web pages. EnablePrivilege is disabled in Firefox 15 and will be removed in Firefox 17.

<!DOCTYPE html>
<html>
<head>
<title>Various DOM Tests</title>
<script>

// changing bar states on the existing window
netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserWrite");
window.toolbar.visible=!window.toolbar.visible;

</script>
</head>

<body>
  <p>Various DOM Tests</p>
</body>
</html>

Notes

When you load the example page above, the browser displays the following dialog: Image:Modify_any_open_window_dialog.png

To toggle the visibility of these bars, you must either sign your scripts or enable the appropriate privileges, as in the example above. Also be aware that dynamically updating the visibilty of the various toolbars can change the size of the window rather dramatically, and may affect the layout of your page.

See also: window.locationbar, window.menubar, window.personalbar, window.scrollbars, window.statusbar

Specifications

SpecificationStatusComment
HTML Living Standard
The definition of 'Window.toolbar' in that specification.
Living Standard 
HTML5
The definition of 'Window.toolbar' in that specification.
Recommendation 

Browser compatibility

BCD tables only load in the browser

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:22 次

字数:4248

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文