手动触发文档就绪

发布于 2024-12-05 09:54:19 字数 353 浏览 0 评论 0原文

是否可以手动重新触发已分配给文档 onready 事件的函数?

我知道这是一个尴尬的问题,而且很难解释这里的情况,但请假设我们有

$(document).ready(function() {
    console.log('Hello World!');
}

没有办法在页面的某个地方以某种方式手动触发此事件?就像下面一样

<script type="text/javascript">
    $(document).trigger('ready');
</script>

,但不幸的是这不起作用。有什么建议吗?

Is it possible to manually refire a function that has been assigned to document's onready event?

I know this is an awkward question, and it's kinda difficult to explain the situation here, but please suppose we have

$(document).ready(function() {
    console.log('Hello World!');
}

Is there a way to manually trigger this event somehow somewhere in the page? like following

<script type="text/javascript">
    $(document).trigger('ready');
</script>

But this doesn't work unfortunately. Any suggestions?

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

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

发布评论

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

评论(1

花期渐远 2024-12-12 09:54:19

为什么 ?难道你不能简单地

function readyFunc() {
    console.log('Hello World!');
}

$(document).ready(readyFunc);

直接根据需要调用该函数吗

why ? cant you simply

function readyFunc() {
    console.log('Hello World!');
}

$(document).ready(readyFunc);

then you can just call the function as needed directly

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