问答详情
源自:3-6 控制类名(className 属性)

取消类名的样式

添加类名可以用object.className = one;

那么取消一个类名了

提问者:qq_无言_24 2016-03-11 16:51

个回答

  • 陈微语
    2016-03-13 22:00:47

    obj.removeAttribute(“style”);

    或者obj.style.cssText = "";

    都可以让标签样式还原默认值。


  • 超级大峰峰
    2016-03-11 17:36:13

    obj.removeAttribute("style"); 取消所有样式