4
我試圖從對象添加結果新創建的HTML元素:鏈接jQuery.each()
*long chain of newly created elements*.append(
$("<div />").append(
$.each(myObj.results, function(intIndex, objValue){
return objValue.description;
})
)
);
如果我使用的是()函數調用一個for循環,而不是每個()它的工作原理,但沒有辦法與each()實現這一點?
謝謝你們,非常感謝。 :) –