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

关于重置按钮

为什么点了取消还是重置了

提问者:撒库拉哈纳米奇 2017-07-30 10:28

个回答

  • 撒库拉哈纳米奇
    2017-07-30 13:11:57


    var mess=confirm("确认重置");
    if (mess=true)
    {
       txt.removeAttribute('style');
    }
    else
    {
        
    }

    我是这么写的  else里面不知道怎么写

  • 慕尼黑9234674
    2017-07-30 11:21:53

    可能没有设置if...else语句

    //定义"取消设置"的函数

    function cancel(){

      if(confirm("确定吗?")){

            t.removeAttribute("style");

            w.removeAttribute("style");

        }

    }

    最好把代码贴出来这样才能知道原因