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

确认取消设置,恢复原始值,怎么设置?

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" Content="text/html; charset=utf-8" />

<title>javascript</title>

<style type="text/css">

body{font-size:12px;}

#txt{

    height:400px;

    width:600px;

border:#333 solid 1px;

padding:5px;}

p{

line-height:18px;

text-indent:2em;}

</style>

</head>

<body>

  <h2 id="con">JavaScript课程</H2>

  <div id="txt"> 

     <h5>JavaScript为网页添加动态效果并实现与用户交互的功能。</h5>

        <p>1. JavaScript入门篇,让不懂JS的你,快速了解JS。</p>

        <p>2. JavaScript进阶篇,让你掌握JS的基础语法、函数、数组、事件、内置对象、BOM浏览器、DOM操作。</p>

        <p>3. 学完以上两门基础课后,在深入学习JavaScript的变量作用域、事件、对象、运动、cookie、正则表达式、ajax等课程。</p>

  </div>

  <form>

  <!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->

    <input type="button" onclick="yanse()" value="改变颜色" >  

    <input type="button" onclick="kd()" value="改变宽高" >

    <input type="button" onclick="hidetext()" value="隐藏内容" >

    <input type="button" onclick="showtext()"  value="显示内容" >

    <input type="button" onclick="queren()" value="取消设置" >

  </form>

  <script type="text/javascript">

//定义"改变颜色"的函数

function yanse() {

con.style.color="red";

con.style.backgroundColor="#CCC";

txt.style.color="blue";

txt.style.backgroundColor="#CCC";

}

//定义"改变宽高"的函数

function kd(){

    con.style.width="180px";

    con.style.height="50px";

}


//定义"隐藏内容"的函数

function hidetext()  

    {  

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

    mychar.style.display="none";    

}  

//定义"显示内容"的函数

    function showtext()  

{  

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

    mychar.style.display="block";     

}


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

  function queren(){

    var mymessage=confirm("确认取消设置吗?")        ;

  }


  </script>

</body>

</html>



提问者:weibo_宇裔魂_0 2015-05-22 15:24

个回答

  • 慕丝0067042
    2018-08-23 15:15:13

    <!DOCTYPE HTML>
    <html>
    <head>
    <meta http-equiv="Content-Type" Content="text/html; charset=utf-8" />
    <title>javascript</title>
    <style type="text/css">
    body{font-size:12px;}
    #txt{
        height:400px;
        width:600px;
        border:#333 solid 1px;
        padding:5px;}
    p{
        line-height:18px;
        text-indent:2em;}
    </style>
    </head>
    <body>
      <h2 id="con">JavaScript课程</H2>
      <div id="txt">
         <h5>JavaScript为网页添加动态效果并实现与用户交互的功能。</h5>
            <p>1. JavaScript入门篇,让不懂JS的你,快速了解JS。</p>
            <p>2. JavaScript进阶篇,让你掌握JS的基础语法、函数、数组、事件、内置对象、BOM浏览器、DOM操作。</p>
            <p>3. 学完以上两门基础课后,在深入学习JavaScript的变量作用域、事件、对象、运动、cookie、正则表达式、ajax等课程。</p>
      </div>
      <form>
      <!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->
        <input type="button" value="改变颜色" onclick="yanse()">  
        <input type="button" value="改变宽高" onclick="gaikuan()">
        <input type="button" value="隐藏内容" onclick="yincang()">
        <input type="button" value="显示内容" onclick="xianshi()" >
        <input type="button" value="取消设置" onclick="shezhi()">
      </form>
      <script type="text/javascript">
    //定义"改变颜色"的函数
    var  chcolor=document.getElementById("txt");
    function yanse(){

    chcolor.style.color="blue";
    chcolor.style.backgroundColor="#CCC";
    }
    //定义"改变宽高"的函数
    function  gaikuan(){
    chcolor.style.width="5";
    chcolor.style.height="50";
    }
    //定义"隐藏内容"的函数
    function  yincang(){
    chcolor.style.display="none";
    }
    //定义"显示内容"的函数
    function  xianshi(){
    chcolor.style.display="block";
    }
    //定义"取消设置"的函数
    function shezhi(){
     var  chc=confirm("取消设置吗?");
      if(chc==true){
          chcolor.removeAttribute("style");
      }
     
    }

      </script>
    </body>
    </html>

  • 慕粉4743295
    2017-09-11 14:26:09

    //定义"显示内容"的函数

    function dele() {


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

            document.getElementById("txt").removeAttribute("style");

      

        }

        else{

            alert("已取消操作");

        }

        


        

    }


  • 啊啦啊啦
    2016-01-24 17:45:23

    function quxiao(){

        

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

        if(panduan==true){

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

            dd.removeAttribute('style');

        }

    }


  • 夜悠然
    2015-12-06 11:54:11

     mychar.removeAttribute("style");方法有用

  • Aomr丶暮想
    2015-06-10 14:43:32

    楼上的骗子  整个页面刷新了  原来写的都重置了   还提交个屁啊

  • 牙尖十怪
    2015-05-22 16:41:28

    parent.location.reload();

    把这句加到你取消设置的代码里面就可以了,具体什么用法和原理请自行百度。