Window.personalbar - Web API 接口参考 编辑
概要
返回 personalbar
对象,其可见性可以在窗口中切换。
语法
objRef =window.personalbar
示例
FIXME: https://bugzilla.mozilla.org/show_bug.cgi?id=790023
The following complete HTML example shows the 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.personalbar.visible = !window.personalbar.visible;
</script>
</head>
<body>
<p>Various DOM Tests</p>
</body>
</html>
笔记
When you load the example page above, the browser displays the following dialog:
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.
规范
Specification | Status | Comment |
---|---|---|
HTML Living Standard Window.personalbar | Living Standard | |
HTML5 Window.personalbar | Recommendation |
相关链接
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论