使用 JavaScript 添加链接
我试图在 Firefox 中使用 javascript 和 Greasemonkey 在 google 主页底部添加一个链接,但我无法使其工作:
// ==UserScript==
// @name testing greasemonkey
// @include http://*google.com/
// ==/UserScript==
document.write('<a href="http://bing.com">Go to Bing</a> ');
任何人都可以帮助我吗?
I'm trying to add a link at the bottom of google's home page using javascript and greasemonkey in firefox, but I can't make it work:
// ==UserScript==
// @name testing greasemonkey
// @include http://*google.com/
// ==/UserScript==
document.write('<a href="http://bing.com">Go to Bing</a> ');
Can anyone help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于 document.write 来说可能已经太晚了。尝试将元素添加到 DOM。
It's probably too late for document.write. Try to add the element to the DOM.
使用 DOM
为了更有用的用法,你可以这样做:
Use DOM
For a more useful usage you could do this: