如何编写跨浏览器兼容的用户脚本?
我过去编写用户脚本的尝试在 Firefox 中失败了,但在 Opera 中失败了,因为这两种浏览器之间存在细微的差异。是否可以使用那些将差异抽象化的库(例如用户脚本中的 jQuery),从而轻松地实现跨浏览器兼容?
My past attempts at writing userscripts ended working in Firefox, but not Opera, because of subtle differences between the two browsers. Is it possible to use of those libraries that abstract the differences away like jQuery inside userscripts to make them cross-browser compatible with little effort?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,正如谷歌搜索greasemonkey jquery 显示:
正如第一个链接中的帖子所说,这意味着您向用户脚本添加了相对较大的 jQuery 成本。让代码在 Firefox 和 Opera 上运行并不是很难——你不必担心 IE :)
Yes, as the google search for greasemonkey jquery shows:
As the posts in the first link say, it means you add a relatively large jQuery cost to your userscript. It's not very hard to make the code work across Firefox and Opera -- you don't have to worry about IE :)