使用 $(document.createElement()) 时是否需要使用 $(document).ready() ?
我想使用 JQuery 的 $(document.createElement())
创建一组元素添加到 HTML 文档中。我知道在开始使用文档元素之前需要 $(document).ready()
。
但是,是否必须使用 $(document).ready()
才能使用 $(document.createElement())
创建元素?换句话说,我可以在文档准备好之前使用 $(document.createElement())
吗?
I want to create a set of elements to add to a HTML document using JQuery's $(document.createElement())
. I know $(document).ready()
is required before starting using document elements.
However, is it necessary to use $(document).ready()
in order to create elements with $(document.createElement())
? In other word, can I use $(document.createElement())
in a document before it is ready?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以随时创建新节点。但是,如果您要将其插入到页面的 DOM 中,那么您必须使用 .ready(),否则无法保证您尝试插入的位置是否存在。
You can create a new node at any time. But if you're going to be inserting it into the page's DOM, then you'll have to use .ready(), otherwise there's no guarantee that the spot you're trying to insert into exists yet.
当我在头部预加载图像时,我会在准备好之前创建新节点......所以作为一般规则或任何东西,这并不是完全必要的。
I create new nodes before ready when I preload my images in the head... so It's not totally essential as a general rule or anything.