Safari 类似 chrome.tabs.update 或 loadURI
我需要 Safari 中 Chrome chrome.tabs.update
或 Firefox loadURI
的模拟。 我尝试过 safari.application.activeBrowserWindow.activeTab.url = newURL
但它不适用于 javascript:...
等书签网址
I need analog of Chrome chrome.tabs.update
or Firefox loadURI
in Safari.
I've tried safari.application.activeBrowserWindow.activeTab.url = newURL
but it doesn't work with bookmarklets urls like javascript:...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没错,这不起作用。您必须将消息传递给网页中的注入脚本才能打开小书签。例如:
在全局页面的脚本中:
在注入的脚本中:
这将起作用。
That's right, it doesn't work. You're going to have to pass a message to an injected script in a web page to open the bookmarklet. For example:
in the global page's script:
in the injected script:
That will work.