
Content Editor Webpart
文章平均质量分 72
SPFarmer
本人从事SharePoint行业有八年的时间,参与过众多SharePoint大型项目,得到多个微软认证,并且是SharePointLake.com的创立者。SharePointLake.com致力于分享SharePoint知识,欢迎大家访问。
展开
-
Content Editor Webpart(二)添加JQuery和html代码
在上一篇(Content Editor Webpart(一)引用JQuery )中介绍了如何在Content Editor Webpart中引用JQuery, 这一篇介绍一下如果在Content Editor Webpart中添加html和JQuery代码。按照上一篇的步骤,编辑Content Editor Webpart的源代码,输入如下代码: $(document)原创 2015-03-19 11:00:28 · 1386 阅读 · 0 评论 -
Content Editor Webpart(三)使用JSOM
JSOM是SharePoint 提供的一种客户端API。开发人员只需要使用Javescript,就可以实现和SharePoint的交互,非常方便。首先按照 (Content Editor Webpart(一)引用JQuery) 中的说明,引入JQuery。然后在Content Editor中添加代码。比如要获取site的title 和description。function r原创 2015-03-20 10:21:24 · 1542 阅读 · 0 评论 -
Content Editor Webpart(一)引用JQuery
SharePoint里面自带了一个Content Editor Webpart, 使用这个webpart,可以方便的往页面上添加任意的内容(HTML,css, JS)。以此来达到往页面添加自定义内容的目的。 当然,说到这里,JQuery 也是必不可少的了。那么如何在Content Editor Webpart里添加JQuery呢?原创 2015-03-18 13:43:14 · 1661 阅读 · 0 评论