我是否可以运行一段jQuery或JavaScript,这样我就可以创建一个内容编辑器Web部件,其中包含“这是列表项的数量:XYZed”。
我试过这个但是没有用:
http://www.martinhatch.com/2010/09/how-to-achieve-count-on-large.html
我试过的是第4次尝试。如果有人可以帮助我那将是非常棒的。
答案 0 :(得分:0)
按给定顺序尝试这些解决方案/帖子。
https://sharepoint.stackexchange.com/questions/5477/getting-a-count-of-list-items-in-a-list-via-ecmascript https://sharepoint.stackexchange.com/questions/18050/how-do-i-get-the-number-of-items-in-a-list http://www.codeproject.com/Questions/266281/jQUERY-TO-GET-COUNT-OF-TOTAL-ITEMS-EXISTED-IN-SP-L
答案 1 :(得分:0)
它对我有用。我所要做的就是创建分组视图并将url放入代码中。我使用了引号
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
//////////
// you will need to change this URL
var url = "http://sppos/Lists/Statistics/Grouped.aspx";
//////////
var groupings = [];
$.get(url, function(data) {
$(data).find("tbody[id^=titl][groupString] > tr > td").each(
function(index, value){
groupings.push($(this).text());
}
);
$("#placeholder").append("<ul></ul>");
$.each(groupings, function(index, value){
$("#placeholder ul").append("<li>" + value + "</li>")
});
});
});
</script>
<div id="placeholder"></div>
经过测试,没有引号不起作用,这可能是一些悲伤的原因