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

removeAttribute()不是删除指定的属性吗,那为什么会变回默认的属性

var message=confirm("你确定要重置所有设置么?");

        if(message==true){

            txt.removeAttribute('style');

        }


提问者:鹤闲 2019-03-30 20:50

个回答

  • 樂猪猪
    2019-03-31 14:54:09

    如果文档指定了属性默认值,那么removeAttribute只是将其恢复默认值。