JavaScript sharepoint 2010使用ecmascript写入列表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript sharepoint 2010使用ecmascript写入列表相关的知识,希望对你有一定的参考价值。

<script type="text/javascript">   

ExecuteOrDelayUntilScriptLoaded(functionName, "sp.js");  //this is necessary to ensure the library is loaded before function triggered 


function functionName() {


var clientContext = SP.ClientContext.get_current();
var myList = clientContext.get_web().get_lists().getByTitle('myList'); //actual list name here

var itemCreationInfo = new SP.ListItemCreationInformation();
var listItem = myList.addItem(itemCreationInfo);

listItem.set_item("Title", "the title"); //actual field names go in first argument, new assigned value in second
listItem.set_item("Field2", "tuna"); 
listItem.set_item("Field3", "ape");
listItem.set_item("Field4", "moose");


listItem.update();

clientContext.executeQueryAsync(Function.createDelegate(this,this.Succeeded),Function.createDelegatethis,this.Failed));
}


function Succeeded() {
alert("Succeeded");
}
function Failed(sender,args) {
alert("fail");
}



 
</script>

以上是关于JavaScript sharepoint 2010使用ecmascript写入列表的主要内容,如果未能解决你的问题,请参考以下文章

SharePoint 2013 使用 JavaScript 获取当前用户

JavaScript sharepoint绝对网站集URL javascript变量

如何从SharePoint列表创建javascript数组?

使用 JavaScript 更改 SharePoint 列上的下拉选项值

Sharepoint 2010 在 jquery/javascript 中捕获 webpart 刷新

javascript 获取SharePoint 2010/2013 userID