为了账号安全,请及时绑定邮箱和手机立即绑定

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";

  }


正在回答

2 回答

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

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("取消了");

}


0 回复 有任何疑惑可以回复我~

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语句判断,提示那里说确认了才恢复默认的,


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

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

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信