1

当它在编辑模式下工作时,我在正常模式下遇到 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,没有任何变化。

4

1 回答 1

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>
于 2013-02-01T23:49:02.363 回答