我刚刚进入 Sharepoint 的 SPServices,似乎它可能是我需要的业务,即以编程方式更新列表中的值。
作为测试,我尝试使用以下代码更新名为 jQueryList 的列表的 Title 列,其中包含一行 (ID=1)。
<script src="..../js/jquery.SPServices-0.7.1a.min.js" type="text/javascript"></script>
<script src="..../js/jquery-1.7.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$(#inhere).html(waitMessage).SPServices({
operation: "UpdateListItems",
listName: jQueryList,
ID: 1,
valuepairs: [["Title", "eggs"]],
completefunc: function (xData, Status) {
var out = $().SPServices.SPDebugXMLHttpResult({
node: xData.responseXML,
outputId: inhere
});
$(#inhere).html("").append("<b>This is the output from the UpdateListItems operation:</b>" + out);
$(#inhere).append("<b>Refresh to see the change in the list above.</b>");
}
});
}
</script>
<div id="inhere">
</div>
我已经把它放在我的列表 jQueryList 底部的 CEWP 中,但它不会更新我的行中的值。对这个问题的完全新手风格表示歉意,但如果有人有任何指示,我将不胜感激。注意:我通过在默认视图中显示 ID 列来获取 ID 值。
最好的问候/科尔姆