0

我在 SharePoint 2010 中使用 CEWP 通过内容链接链接到 HTML 文件,但是 jQuery 似乎只在页面处于编辑模式时运行。HTML 正在显示,但没有显示通过 jQuery 创建的内容。注意事项:

  • 未选择“隐藏”Web 部件属性
  • 我的脚本链接包括“text='text/javascript'”
  • 完全相同的 HTML 文件在我的开发环境中工作,但不是测试
  • 该站点的权限在开发和测试中是相同的
  • 在我将页面置于编辑模式之前,页面上的其他 Web 部件都不起作用,但是如果我删除有问题的 Web 部件,其他 Web 部件开始在编辑模式之外工作。

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>

4

1 回答 1

0

结果是,另一个 Web 部件引用了一个不在站点资产文件夹中的 jquery 文件。我在根目录(它正在查找的位置)替换了该文件,问题得到了解决。

于 2014-11-04T17:33:10.870 回答