1:CDN引入,在head标签中加入下列代码
<head>
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.js"></script>>
</script>
</head>
2:本地引入,这种方法要求本地有jquery.js:
<head>
<script src="jquery.js"></script>>
</script>
</head>
jquery可以到其官网下载,官网地址是www.jquery.com
JQuery是继prototype之后又一个优秀的Javascript库。它是轻量级的js库 ,它兼容CSS3,还兼容各种浏览器。推荐使用CDN,许多用户在访问其他站点时,已经从其他加载过 jQuery。所有结果是,当他们访问您的站点时,会从缓存中加载 jQuery,这样可以减少加载时间。同时,大多数 CDN 都可以确保当用户向其请求文件时,会从离用户最近的服务器上返回响应,这样也可以提高加载速度。同时推荐使用百度CDN,因为其他的比如谷歌和微软的CDN不可用!
加两段代码:第一段 12 <!-- Place this tag in your head or just before your close body tag -->
<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
加到:includes/templates/your template/tpl_main_page.php 的</body>前面
第二段 12 <!-- Place this tag where you want the +1 button to render --<g:plusone></g:plusone>
加到,你想显示的地方,
比如:includes/templates/your template/tpl_header.php
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)