码迷,mamicode.com
首页 > Web开发 > 详细

Content Editor Webpart(一)引用JQuery

时间:2017-04-18 12:48:17      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:point   asc   int   net   center   sdn   http   页面   gravity   

SharePoint里面自带了一个Content Editor Webpart, 使用这个webpart。能够方便的往页面上加入随意的内容(HTML,css, JS)。以此来达到往页面加入自己定义内容的目的。

 

当然,讲到这里。JQuery 也是不可缺少的了。那么怎样在Content Editor Webpart里加入JQuery呢?

 

1.      首先在Style Library里,上传JQuery

技术分享

2.      然后打开一个页面。编辑页面,增加一个Content Editor Webpart。选中Content Editor Webpart, 在Ribbon上点击Edit Source:

技术分享

3.      在里面引用JQuery:

<scripttype="text/javascript"src="/sites/apps/Style%20Library/jquery-1.10.2.min.js"></script>???????
<scripttype="text/javascript">
jQuery(document).ready(function(){
 
alert("JqueryLoaded!");
 
});
</script>?????????

技术分享 

点OK。

4.      停止编辑。保存页面,刷新,得到以下的提示:

技术分享

说明JQuery载入成功了。

Content Editor Webpart(一)引用JQuery

标签:point   asc   int   net   center   sdn   http   页面   gravity   

原文地址:http://www.cnblogs.com/claireyuancy/p/6727011.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!