1 回答

TA貢獻(xiàn)1830條經(jīng)驗(yàn) 獲得超3個(gè)贊
您可能需要更改 data 的變量類型才能循環(huán)遍歷它。您可以通過(guò)console.log(typeof data)檢查變量的類型。以下是您的問(wèn)題的可能解決方案,看看這是否對(duì)您有幫助。
success:function(data){
console.log(typeof data); // should be string
data = jQuery.parseJSON(data);
console.log(typeof data); // should be object
$.each(data['hasil'], function(key, val){
$.each(val, function(subkey, subval){
console.log(subkey);
console.log(subval);
// all values are assigned to the elements with the same id as their keys(as your code suggests)
$('#' + subkey).val('<value="' + subval + '">');
});
});
}
- 1 回答
- 0 關(guān)注
- 163 瀏覽
添加回答
舉報(bào)