如何在 WordPress 模板中使用 onLoad 事件?

发布于 2024-12-23 01:16:59 字数 195 浏览 0 评论 0原文

在为 WordPress 页面编写 PHP 模板时,我们不应该使用 标记,因为它已经存在于模板中调用的 header.php 中。
我们如何在模板中使用 onLoad 事件?

由于我正在编写多个模板,因此我无法在 header.php 中使用它。

When writing PHP templates for WordPress pages we shouldn't use the <body> tag because it already exists in header.php which is called in the template.
How than can we use the onLoad event within the template?

Since I'm writing more than one template I can't use it in header.php.

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

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

发布评论

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

评论(1

寂寞清仓 2024-12-30 01:16:59

不要通过 HTML 属性附加它。

通过非侵入式事件处理程序附加它。因为 WordPress 使用 jQuery,所以这很简单......

$(window).load(function() {
    // ....
});

Don't attach it via the HTML attribute.

Attach it via an non obtrusive event handler. Because WordPress uses jQuery, that's as easy as...

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