附加 's 的正确语法有很多结果<li>
,但是我试图找到一个解决方案,其中+this['name']+
值包含在<li>
's 中。firebug 正在显示'SyntaxError: unterminated string literal'
,jslint 正在显示'Unclosed string'
。我已经尝试了许多不同的逗号位置变体,但我无法让它工作。
$.each(data.result, function() {
$("ul").append("<li>Name: "+this['name']+"</li>
<li>Age: "+this['age']+"</li>
<li>Company: "+this['company']+"</li>
<br />");
});
谢谢你。