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

怎么取消部分设置

取消设置时怎么取消整个<div>中的其中一个标签的样式,而别的保持不变。

提问者:大神在路上 2016-06-04 09:40

个回答

  • 我要开发地图系统
    2016-06-11 17:13:06

    很简单——把那个样式设置为空就行。

    比如:

    div.style.color="red";      是设置div的颜色为红,那要取消它怎么写?

    div.style.color="";     对,就这么简单!     就是把它的值设置为空即可。

  • 一二一二
    2016-06-05 22:55:17

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

        

        }

        .n1{color:blue;   }

    </style>

    </head>

    <body>

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

      <div id="txt"> 

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

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

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

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

      </div>

      <form id="myform">

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

        <input type="button" value="改变颜色" >  

        <input type="button" value="改变宽高" >

        <input type="button" value="隐藏内容" >

        <input type="button" value="显示内容" >

        <input type="button" value="取消设置" >

      </form>

      <script type="text/javascript">

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

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


    var a=document.getElementById("myform").getElementsByTagName("input");

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

    var c=document.getElementById("txt").getElementsByTagName("p");

    a[0].onclick=function(){

        

    b.style.color="red";

    }

        

    a[1].onclick=function(){    

        b.style.width="90%";

         b.style.width="110%";    

    }



    a[2].onclick=function(){    

        b.style.display="none";

    }

        

    a[3].onclick=function(){    

        b.style.display="block";    

    }


    a[4].onclick=function(){   

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

       if(msg==true)  

            {           

                b.removeAttribute("style"); 

               

                c[1].className=""; //CSS文件中有class时

                

                c[1].setAttribute("class"," ");//未设置css时候,直接设置空Class给C1

                c[2].style.cssText=""; //内嵌式css时

                

            }

    }




      </script>

    </body>

    </html>


  • huakehualuo
    2016-06-04 11:10:02

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

  • jay012345678
    2016-06-04 10:52:00

    找子对象