我在正常模式下遇到Javascript错误(预期对象)的问题,而它在编辑模式下工作。它在下面显示的最后一行失败。
$(document).ready(function() { updateListItem(); });
function updateListItem() {
var siteUrl = ‘/sites2/sppwgrqy/DashboardTest/’; alert(‘now to get siteUrl’ + siteUrl );
var clientContext = new SP.ClientContext(siteUrl ); //fails hereNo hidden components.
}
在编辑模式下工作正常。我升级到 jquery 1.8.3 然后升级到 1.9.0,没有任何变化。
好吧,老实说,我从来没有发现为什么这种方法只在编辑模式下有效。所以我使用了 SPServices 选项:
<script type="text/javascript">
//Wrapping your script in $(document).ready(function()means
//that the calls will be made once the page is fully loaded,
// i.e., the page is "ready".
$(document).ready(function() {
updateReleaseSelected();
});
function updateReleaseSelected()
{
var relID = document.getElementById('ReleaseID').value;
// alert('RelID:' + relID );
updateItems(relID );
};
function updateItems(relID)
{
$().SPServices(
{
operation: 'UpdateListItems',
webURL: '/sites2/sppwgrqy/DashboardTest/',
listName: 'ReleaseSelected',
updates: '<Batch OnError="Continue" PreCalc="True">' +
'<Method ID="1" Cmd="Update">' +
'<Field Name="ReleaseValue">' + relID + '</Field>' +
'<Field Name="ID">2</Field>' +
'</Method>' +
'</Batch>',
completefunc: function(xData, Status)
{
//alert('successfully updated');
}
});
}
</script>