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

Content Editor Webpart(二)添加JQuery和html代码

时间:2015-03-19 13:22:53      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:sharepoint   content editor   jquery   

在上一篇(Content Editor Webpart(一)引用JQuery  )中介绍了如何在Content Editor Webpart中引用JQuery, 这一篇介绍一下如果在Content Editor Webpart中添加html和JQuery代码。


按照上一篇的步骤,编辑Content Editor Webpart的源代码,输入如下代码:

<div style="height: 200px;">
<script type="text/javascript" src="/sites/apps/Style%20Library/jquery-1.10.2.min.js"></script>
<script> 
$(document).ready(function(){
    $("#btnStr").click(function(){
        $("#move").animate({left: '250px'});
    });
});
</script>

<button id="btnStr" onclick="moveDiv()">Start Animation</button>
<p>By default, all HTML elements have a static position, and cannot be moved. 
      <br/>To manipulate the position, remember to first set the CSS position property of the element to relative, fixed, or absolute!</p>
<div id="move" style="height: 100px; width: 100px; position: absolute; background: #98bf21;"></div> 
</div>

技术分享

保存完之后,显示成这样:

技术分享


点击Start Animation,绿色的div块就会移动起来:

技术分享 


点击

Content Editor Webpart(二)添加JQuery和html代码

标签:sharepoint   content editor   jquery   

原文地址:http://blog.csdn.net/spfarm/article/details/44454465

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