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

取消有问题

function Cancel()

{

    var sure=confirm("Are you sure?");

    if(sure==ture)

    {

        var can=document.getElementById('txt');

        can.style.color='#000';

        can.style.backgroundColor='#fff';

        can.style.display='block';

        can.style.width='400px';

        can.style.height='600px';

    }

}

为什么加个if判断不起作用,去掉if既可以了?


提问者:faithmu 2017-08-02 22:28

个回答

  • 慕慕6468460
    2017-08-04 17:42:13
    已采纳

    取消你可以使用:

    var mychar = document.getElementById("txt");
     mychar.className="txt";

    这个方法可以使所有样式恢复原样(我改变的是源代码中id=“txt”的内容)

  • 慕慕6468460
    2017-08-04 17:46:37

    你的方法也是可以的

  • 慕函数0316614
    2017-08-02 23:58:23

    可以,我刚才试了