尝试使用SPServices库生成超链接项的列表。我如何在一个href中调用或返回循环变量?当前编码的方式仅呈现字符串" list [i] [' Name']"。
This code works not using a href:
document.getElementById("output").innerHTML=document.getElementById("output").innerHTML+list[i]['Name']+"</br>";
This only provides the string:
$SP().lists(function(list) {
for (var i=0; i<list.length; i++)document.getElementById("output").innerHTML=document.getElementById("output").innerHTML+"<a href=list[i]['Url']>list[i]['Name']</a>"+"<br>";
});
提前致谢!