将标记放在之外有什么问题?

发布于 2024-08-07 05:48:17 字数 187 浏览 6 评论 0原文

我有一个存储大量 DOM 数据的书签,但我希望避免将它们放在 body 标记之外,这样页面中的脚本就不会弄乱它。

语义值一次不是问题,但我想知道:

  • 它会触发某些浏览器行为吗?
  • 它仍然可以在 DOM 中访问吗?
  • 我可以使用绝对定位来显示它还是应该每次都将它移动到正文?

I have a bookmarklet storing a lot of DOM data, but I would love to avoid to put them out of the body tag so the script in the page won't mess with it.

Semantic value is not an issue for once, but I would like to know :

  • will it trigger some browser behaviour ?
  • will it still be accessible in the DOM ?
  • can I display it using absolute positionning or should I move it to the body every time ?

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

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

发布评论

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

评论(2

梦途 2024-08-14 05:48:17

内的所有内容标签(即使在 标签之外)可以通过 document.documentElement 访问。

Everything inside the <html> tag (even if outside the <body> tag) can be accessed via document.documentElement.

递刀给你 2024-08-14 05:48:17

一些小测试的结果:

  • 如果在 之后,Firefox 不会显示大红色 DIV 如果
  • 在 SCRIPT 中,Firefox 不会从 SCRIPT 运行 alert() 之后
  • Firebug 看不到它们,但在 之后显示著名的 Firebug DIV

Result of some little testing :

  • Firefox won't display a big red DIV if it's after </body>
  • Firefox won't run alert() from a SCRIPT if it's after </body>
  • Firebug don't see them but display the famous Firebug DIV after </body>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文