JS.遍曆屬性

來源:互聯網
上載者:User

標籤:rsa   ntb   type   array   節點   UNC   div   rem   sele   

1、2中:(1)、JS對象的屬性:"for (z in ??)"

    (2)、DOM節點的屬性:"???.attrributes;"

2、舉例子:

        window.onload = function(evt)        {        var text01 = document.getElementById("text01");    //    text01.removeAttribute("letter-spacing");    //    delete text01.letterSpacing;        for (z in text01)            console.log(z + " --> " + text01[z]);    /* https://segmentfault.com/q/1010000009666240?_ea=2009998    var divEle = document.querySelector(‘#divEle‘);  //得到數組    var attrs = divEle.attributes;  //得到所有屬性    var attrsArray = Array.prototype.slice.call(attrs);      //轉換為數組形式    console.log(attrsArray);    // [class,id]    */        var attrs = text01.attributes;        console.log("attrs : " + attrs);        console.log("attrs[0] : " + attrs[0]);        console.log("");        for (var i=0; i<attrs.length; i++)        {            console.log(attrs[i].name + " : " + attrs[i].value);        }        };

 

3、

4、

5、

 

JS.遍曆屬性

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.