使用 $(document.createElement()) 时是否需要使用 $(document).ready() ?

发布于 2024-12-10 03:00:11 字数 297 浏览 0 评论 0原文

我想使用 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 技术交流群。

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

发布评论

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

评论(2

饮湿 2024-12-17 03:00:11

您可以随时创建新节点。但是,如果您要将其插入到页面的 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.

耀眼的星火 2024-12-17 03:00:11

当我在头部预加载图像时,我会在准备好之前创建新节点......所以作为一般规则或任何东西,这并不是完全必要的。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文