问答详情
源自:4-1 编程挑战

removeAttribute

obj.removeAttribute("style");怎么用的

removeAttribute?有什么用处吗,用法是什么

提问者:路上的小白 2018-04-11 10:48

个回答

  • coffeehyh
    2018-04-12 15:20:33

    翻译过来就是移除属性,作用是移除元素的属性。


    例如,var a = document.getElementById("ID");

    a.removeAttribute("color");

    作用就是移除该元素的color属性。