Remove attribute of HTML tag

后端 未结 6 2367
无人及你
无人及你 2020-12-01 18:45

Is it possible to remove the attribute of the first HTML

tag? So, this:

aaa
6条回答
  •  攒了一身酷
    2020-12-01 19:12

    it is easy in jQuery just use

    $("div:first").removeAttr("style");
    

    in javascript

    use var divs = document.getElementsByTagName("div");

    divs[0].removeAttribute("style");

提交回复
热议问题