请看我的代码:
function foo() {
var h = "start";
$.each(some_array_of_objects, function() {
var name = 'middle';
h += name;
});
h += "end";
alert(h);
}
我希望在我的警报中看到累积的字符串,但不是这个,而是包含很多[object Object]字符串的字符串。是否可以在不使用全局变量的情况下以上述方式累积h变量?