如何在 WordPress 中安装 jQuery?
如何在我的 WordPress 网站上安装 jQuery?
How can I install jQuery on my Wordpress site?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在我的 WordPress 网站上安装 jQuery?
How can I install jQuery on my Wordpress site?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
尽管其中一个答案已被接受,但我认为以下技术可能会对某人有所帮助。
在
Plugin Page
或function.php
中包含以下代码当然,您可以使用任何有意义的函数名称来代替
include_jQuery
。或者,您可以使用以下代码:
最后,作为一般规则,您不应将
$
变量用于jQuery
,除非您使用了 快捷方式。以下是如何快捷方式 jQuery 以安全使用$
变量的示例:您可能喜欢 THIS 链接也是我个人学习上述技术的地方。非常感谢 Ericm Martin!
Though one of the Answer is already Accepted but I feel the following technique may help somebody.
Include the following code at
Plugin Page
OR atfunction.php
Definitely you can use any meaningful function name instead off
include_jQuery
.Alternately, you can use the following code:
Finally, as a general rule, you should not use the
$
variable forjQuery
unless you have used one of the shortcuts. The following is an example of how to shortcut jQuery to safely use the$
variable:You may like THIS link as well from where I personally learn the above technique(s). A Very BIG Thanks to Ericm Martin!
Jquery 已与 Wordpress 安装打包在一起,并可随其使用。
安装新的 WordPress 博客后,请检查源代码。
Jquery Already packaged with the Wordpress installation, and gets available with it.
Check the source code when you get your new Wordpress Blog installed.