问答详情
源自: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" value="改变颜色" onClick="changeColor()">  

    <input type="button" value="改变宽高" onClick = "changeWH()">

    <input type="button" value="隐藏内容" onClick = "dispN()">

    <input type="button" value="显示内容" onClick = "dispD()">

    <input type="button" value="取消设置" onClick = "cancelAll()">

  </form>

  <script type="text/javascript">

  

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

    function changeColor(){

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

        mycon.style.color = "red";

        mycon.style.backgroundColor = "blue";

    }


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

    function changeWH(){

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

        mycon.style.width = "800";

        mycon.style.height = "500";

    }


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

    function dispN(){

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

        mycon.style.display = "none";

    }


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

    function dispD(){

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

        mycon.style.display = "display";

    }


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

    function cancelAll(){

        var cancel = confirm("确认取消所有设置?");

        if(cancel==true){

            

        }

        eles{

            

        }

    }



  </script>

</body>

</html>



提问者:一个文艺的IT青年 2019-08-09 23:23

个回答

  • qq_宝慕林4595195
    2019-09-04 11:24:30

    <!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="change_color()" >  

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

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

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

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

      </form>

      <script type="text/javascript">

      var size=1;

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

    function change_color(){

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

        if(ob.style.color!="red")

        {

            ob.style.color="red";

            ob.style.backgroundColor="#ccc";

        }

        else

        {

            ob.style.color="black";

            ob.style.backgroundColor="#fff";

        }

    }

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

    function change_size(){

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

        if(size==1)

        {

            size=2; 

            ob.style.width=500+"px";

            ob.style.height=300+"px";

        }

        else

        {   

            size=1;

            ob.style.width=600+"px";

            ob.style.height=400+"px";

        }

    }

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

    function hide_value(){

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

        ob.style.display="none"

    }

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

    function show_value(){

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

        ob.style.display="block"

    }

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

    function is_confirm(){

        var is_reset= confirm("是否重置界面?");

        if(is_reset==true){

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

            ob.style.color="black";

            ob.style.backgroundColor="#fff";

            size=1;

            ob.style.width=600+"px";

            ob.style.height=400+"px";

            ob.style.display="block"

        }

    }

      </script>

    </body>

    </html>


  • 宝慕林4117178
    2019-08-10 16:40:27

    <!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="changeColor()">  

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

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

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

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

      </form>

      <script type="text/javascript">

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

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

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

    function changeColor(){

        biaoTi.style.color="blue";

        neirong.style.color="red";

    }

     

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

    function changeHight(){

        neirong.style.hight="500px";

        neirong.style.width="50px";

    }

     

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

    function xiaoshi(){

        neirong.style.display="none";

    }

     

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

    function chulai(){

        neirong.style.display="block";

    }

     

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

    function huifu(){

        var adsa=confirm();

        if (adsa==true){

        txt.removeAttribute('style');

        con.removeAttribute('style');

        }

        else ;

    }

     

     

      </script>

    </body>

    </html>

     

      </script>

    </body>

    </html>


  • 宝慕林4117178
    2019-08-10 16:39:02

    mycon.style.display = "display";


     mycon.style.width = "800";

            mycon.style.height = "500";

    function cancelAll(){

            var cancel = confirm("确认取消所有设置?");

            if(cancel==true){

                

            }

            eles{

                

            }

        }

    这几处都有问题

  • 宝慕林4117178
    2019-08-10 16:27:27

    没有定义变量 mycon   

    var  mycon =document.getElementById("txt")

  • 宝慕林4117178
    2019-08-10 16:24:06

    onClick="changeColor()"     

    onclick   小写!!!