wordpress jquery加载 如何实现?是否有插件?
2个回答
展开全部
下面是调用jQuery的几种方法:
1.自己从网上下载挂在自己网站中。
<script type=”text/javascript” src=”<?php bloginfo(‘template_directory’); ?>/js/jquery.js”>
</script>
2.直接调用谷歌 Google 的 API库
<scrip和type=”text/javascript” src=”http://ajax.googleapis.com/ajax/libs/jquery/1.2.3/jquery.min.js”>
</script>
3.直接调用WP自带的 jQuery
<?php wp_enqueue_script(‘jquery’); ?>
但要注意的是: wp_enqueue_script(‘jquery’); 必需加在 wp_head(); 的前面,
而且 js 的写法是:
jQuery(document).ready(function($) {
// $() will work as an alias for jQuery() inside of this function
});
这样 jQuery() 包里的所有 $() 才能被正确识别.
大家的习惯写法也:
$(document).ready(function() { … }); 需要改为 jQuery(document).ready(function($) { … });
这是为了 noConflict();
另外, 把全部简写的“$” 还原回,使用“jQuery” 也行.
1.自己从网上下载挂在自己网站中。
<script type=”text/javascript” src=”<?php bloginfo(‘template_directory’); ?>/js/jquery.js”>
</script>
2.直接调用谷歌 Google 的 API库
<scrip和type=”text/javascript” src=”http://ajax.googleapis.com/ajax/libs/jquery/1.2.3/jquery.min.js”>
</script>
3.直接调用WP自带的 jQuery
<?php wp_enqueue_script(‘jquery’); ?>
但要注意的是: wp_enqueue_script(‘jquery’); 必需加在 wp_head(); 的前面,
而且 js 的写法是:
jQuery(document).ready(function($) {
// $() will work as an alias for jQuery() inside of this function
});
这样 jQuery() 包里的所有 $() 才能被正确识别.
大家的习惯写法也:
$(document).ready(function() { … }); 需要改为 jQuery(document).ready(function($) { … });
这是为了 noConflict();
另外, 把全部简写的“$” 还原回,使用“jQuery” 也行.
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询