📜  遍历 json 对象 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:14.640000             🧑  作者: Mango

代码示例6
var arr = [ "one", "two", "three", "four", "five" ];
var obj = { one:1, two:2, three:3, four:4, five:5 };

jQuery.each(arr, function() {
  $("#" + this).text("My id is " + this + ".");
  return (this != "four"); // will stop running to skip "five"
});

jQuery.each(obj, function(i, val) {
  $("#" + i).append(document.createTextNode(" - " + val));
});