跨站点显示SharePoint 列表或者文档库 cross site

在Content Editor web part 上显示 如下代码即可

 

 

//the placeholder for the webpart, with a nice waiting image 
<div id="ListPlaceholder"><img src="/_layouts/images/GEARS_AN.GIF" alt="" /></div>
<script src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js" type="text/javascript"></script>   
<script type="text/javascript"> // add the link to the view of the list you want to show: 
var ShowWP = "http://157.60.60.170/Shared%20Documents/Forms/AllItems.aspx";
 $("#ListPlaceholder").load(ShowWP +" #WebPartWPQ2 .ms-listviewtable",function() {     $("#ListPlaceholder *").removeAttr("id onclick onfocus onmouseover"); }); </script> 

 

posted @ 2013-05-09 16:56  山之子  阅读(234)  评论(0编辑  收藏  举报