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

js入门篇最后一个综合练习,求大神指点我错在那

 var a1=document.getElementById("txt")

  function color(){

      a1.style.color="red";

      a1.style.backgroundColor="#ccc";

  }

  function width(){

      a1.style.height="300px";

      a1.style.width="200px";

  }

  function hide(){

      a1.style.display="none";

  }

  function display(){

      a1.style.display="block";

  }

  function confirm("确定要取消设置吗?"){

      

     

    a1.style.height="400px";

    a1.style.width="600px";

    a1.style.border="#333 solid 1px";

a1.style.padding="5px";

  }


提问者:成功我只欠努力 2017-01-06 09:57

个回答

  • 慕圣8767564
    2017-01-06 11:46:44

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

    function change_set(){

        var sse=confirm("取消设置?");

        if(sse==true){        

            var s=document.getElementById("con");

            s.removeAttribute("style");

    var h=document.getElementById("txt");

    h.removeAttribute("style");

        }   else {

    alert("取消了");

    }


  • Z涛
    2017-01-06 11:36:16

    function confirm(){

        var a=confirm("是否取消设置");

        if(a==true){

            txt.style.color="auto";

             txt.style.width="600px";

              txt.style.height="400px";

               txt.style.display="block";

                }

    这里有个判断,所以要加个if语句判断,提示那里说确认了才恢复默认的,