var spaghetti = new Pasta("wheat",0.2,"circle");
var arr = Object.keys(spaghetti);
document.write(arr);
结果图:
显示 Pasta 对象中以字母“g”开头的所有可枚举属性的名称:
function CheckKey(value) {
var firstChar = value.substr(0,1);
if (firstChar.toLowerCase() == "g") {
return true;
} else {
return false;
}
}
var polenta = new Pasta("corn",1,"mush");
var keys = Object.keys(polenta).filter(CheckKey);
document.write(keys);</pre>
结果如图:
遍历json对象的键:
结果如图:
以上这篇javascript遍历json对象的key和任意js对象属性实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。
原文链接:https://www.f2er.com/js/40878.html