如何在 WordPress 模板中使用 onLoad 事件?
在为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要通过 HTML 属性附加它。
通过非侵入式事件处理程序附加它。因为 WordPress 使用 jQuery,所以这很简单......
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...