如何让这个小书签在 Safari 上运行?

发布于 2024-08-21 04:31:51 字数 260 浏览 9 评论 0原文

我正在尝试进行书签测试。 下面的代码可以在 FireFox 上运行,但不能在 Safari 4.0.3 上运行。 有人知道如何让它在 Safari 上运行吗?

javascript:var s = document.createElement("script");
s.text = "document.write('hello');";
s.type = "text/javascript";
document.body.appendChild(s);

I am trying to make a bookmarklet test.
Below code works on FireFox but couldn't on Safari 4.0.3.
Does anybody know how to make it work on Safari?

javascript:var s = document.createElement("script");
s.text = "document.write('hello');";
s.type = "text/javascript";
document.body.appendChild(s);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

少女的英雄梦 2024-08-28 04:31:51

尝试使用: s.innerHTML = "document.write('hello');";

Try with: s.innerHTML = "document.write('hello');";

避讳 2024-08-28 04:31:51

您需要在 document.write(...) 之后添加 document.close();

javascript:(function(){
  s=document.createElement("script");
  s.type="text/javascript";s.text="document.write('Hello88');document.close();"
  document.body.appendChild(s);
 })();

You need to add document.close() after document.write(...);

javascript:(function(){
  s=document.createElement("script");
  s.type="text/javascript";s.text="document.write('Hello88');document.close();"
  document.body.appendChild(s);
 })();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文