sharepoint JQ获取List列表的值
Posted 无懈可击
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sharepoint JQ获取List列表的值相关的知识,希望对你有一定的参考价值。
<script type="text/javascript">
function getlistitem()
{
var mycontext=new SP.ClientContext();
var mysite=mycontext.get_web();
var query = new SP.CamlQuery();
query.set_viewXml("<View><Query></Query></View>");
var mylist=mysite.get_lists().getByTitle(‘test‘);
myitem= mylist.getItems(query);
mycontext.load(myitem);
mycontext.executeQueryAsync(Function.createDelegate(this,this.getsuccessed),Function.createDelegate
(this,this.getfailed));
}
function getsuccessed()
{
var str="";
var gh="";
var listsE=myitem.getEnumerator();
while(listsE.moveNext())
{
gh+=listsE.get_current().get_item("_x5de5__x53f7_")+"<br>";
str+=listsE.get_current().get_item("Title")+"<br>";
}
document.getElementById("lists").innerhtml=gh;
}
function getfailed(sender,args)
{
alert("failed~!");
}
</script>
<div><input value="get2" type="button" onclick="getlistitem()"/></div>
<div id="lists"></div>
<div id="listg"></div>
以上是关于sharepoint JQ获取List列表的值的主要内容,如果未能解决你的问题,请参考以下文章
使用Powershell将csv导入SharePoint列表
C# 对sharepoint 列表的一些基本操作,包括添加/删除/查询/上传文件给sharepoint list添加数据