中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

javascript遍歷json對象的key和任意js對象屬性實例

發布時間:2020-09-01 12:36:19 來源:腳本之家 閱讀:166 作者:jingxian 欄目:web開發

使用 keys 方法獲取該對象的屬性和方法:

 function Pasta(grain, width, shape) {
        this.grain = grain;
        this.width = width;
        this.shape = shape;
        this.toString = function () {
          return (this.grain + ", " + this.width + ", " + this.shape);
        }
      }
      
      var spaghetti = new Pasta("wheat", 0.2, "circle");
      var arr = Object.keys(spaghetti);
      document.write(arr);

結果圖:

javascript遍歷json對象的key和任意js對象屬性實例

顯示 Pasta 對象中以字母“g”開頭的所有可枚舉屬性的名稱:

function Pasta(grain, width, shape) {
        this.grain = grain;
        this.width = width;
        this.shape = shape;
      }

      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);

結果如圖:

javascript遍歷json對象的key和任意js對象屬性實例

遍歷json對象的鍵:

var an_obj = { 100: 'a', 2: 'b', 7: 'c', "name": "wu", "interesting": "Game" };
 document.write(Object.keys(an_obj));

結果如圖:

javascript遍歷json對象的key和任意js對象屬性實例

以上這篇javascript遍歷json對象的key和任意js對象屬性實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

玛沁县| 额尔古纳市| 屏东市| 绥中县| 陇南市| 新巴尔虎右旗| 什邡市| 介休市| 上蔡县| 商丘市| 汨罗市| 中阳县| 望城县| 合作市| 突泉县| 宝鸡市| 葵青区| 岱山县| 南江县| 彩票| 扬州市| 平南县| 墨脱县| 女性| 晋城| 彭水| 迁西县| 兴安盟| 长白| 自贡市| 大埔县| 喜德县| 沂水县| 嘉兴市| 桃园市| 波密县| 六安市| 闵行区| 临泽县| 荥阳市| 弥渡县|