将标记放在之外有什么问题?
我有一个存储大量 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
内的所有内容标签(即使在 标签之外)可以通过
document.documentElement
访问。Everything inside the <html> tag (even if outside the <body> tag) can be accessed via
document.documentElement
.一些小测试的结果:
之后,Firefox 不会显示大红色 DIV 如果
alert()
之后
之后显示著名的 Firebug DIV
Result of some little testing :
</body>
alert()
from a SCRIPT if it's after</body>
</body>