Firefox 插件 - 后退按钮清理
我们只是开发一个 Firefox 插件,它通过 urlbar 加载多个页面。
不幸的是,有些条目不属于后退按钮列表+我们不想让后退按钮变得混乱。
那么如何阻止 Firefox 在后退按钮列表中保存站点加载呢?或者删除它?历史-1?
谢谢你!
We just work on a firefox addon which loads several pages via the urlbar.
Unfortunately some entries there don't belong to the backbutton list + we do not want to clutter the backbutton.
So how to prevent Firefox from saving a siteload in the backbutton list? or delete it? history -1?
thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 loadURI,则可以使用 nsIWebNavigation.LOAD_FLAGS_REPLACE_HISTORY 标志使新页面覆盖现有历史记录条目,而不是创建新页面。如果您要设置
content.location
,请改用content.location.replace()
。If you're using loadURI, you can use the
nsIWebNavigation.LOAD_FLAGS_REPLACE_HISTORY
flag to make the new page overwrite the existing history entry rather than creating a new one. If you're settingcontent.location
, usecontent.location.replace()
instead.