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

怎么恢复原始值?

怎么恢复原始值?


提问者:ASDDSAFAS 2017-06-26 14:27

个回答

  • 神奇的网络
    2017-06-27 15:34:11
    已采纳

    恢复原始值有两种方式  第一种方式:  obj.style=' '; 这种意思是将  对象的样式 赋值为空   赋值运输 是从右往左  把右边的给左边的  。  第二种方式 obj.removeAttribute('style')   这种的意思 是 把 对象的 style 属性 移除掉。

  • jenny0814
    2017-06-26 15:03:51

    style="" 当然这样子更简洁

  • jenny0814
    2017-06-26 15:02:27

    设置过的值都置空就可以了

    function cancel(){

      x.style.color="" ;

      x.style.width="" ;

      x.style.display="" ;

      x.style.display="" ;

    }


  • qq_烤地瓜_0
    2017-06-26 14:55:44

    function cancel(){

    if(confirm("是否取消设置?")){

    div.style="";

    }

    }

    你试试