我在SharePoint 2010中使用CEWP通过内容链接链接到HTML文件,但jQuery似乎只在页面处于编辑模式时运行。 HTML正在显示,但没有显示通过jQuery创建的内容。注意事项:
HTML文件代码是:
<script type='text/javascript' src='/SiteAssets/jquery-1.6.2.min.js' ></script>
<style type="text/css">
#lineComment{
width:10px;
height:10px;
padding-left: 3px;
}
#tripReclose{
float:left;
margin-right:7px;
}
#tripReclose th{
padding-right:7px;
text-align:left;
}
#tripReclose td, #openBreaker td{
/*border-left:thin #E5E5E5 solid;
border-right:thin #E5E5E5 solid;*/
border-top:thin #E5E5E5 solid;
border-bottom:thin #E5E5E5 solid;
}
#tripReclose caption{
text-align:left;
font-weight:bold;
padding-top:5px;
padding-bottom:5px;
}
#openBreaker{
float:left;
}
#openBreaker th{
padding-right:7px;
text-align:left;
}
#openBreaker caption{
text-align:left;
font-weight:bold;
padding-top:5px;
padding-bottom:5px;
}
</style>
<div id="lineStatus">
<table id="tripReclose">
<caption>Trip and Reclose Events</caption>
<tbody>
<tr>
<th>Service Point</th><th>Event Date</th><th>Fault Target</th><th>Device jquery-1.6.2.minName</th>
</tr>
</tbody>
</table>
<table id="openBreaker">
<caption>Open Breaker Events</caption>
<tbody>
<tr>
<th>Service Point</th><th>Open Date</th><th>Close Date</th><th>Device Name</th><th>PLT Assigned</th>
</tr>
</tbody>
</table>
</div>
<script type="text/javascript">
/* Run custom JavaScript that retrieves list items via CAML - I cannot specify this code but can guarantee it works */
</script>
&#13;
答案 0 :(得分:0)
事实证明,另一个Web部件引用了一个不在site assets文件夹中的jquery文件。我在root(它正在寻找)替换了该文件,问题得到了解决。