问答详情
源自: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="changeWidthHeight()" >
    <input type="button" value="隐藏内容" onclick="hide()" >
    <input type="button" value="显示内容" onclick="show()" >
    <input type="button" value="取消设置" onclick="delete()">
  </form>
  <script type="text/javascript">
  var divchar=document.getElementById("txt");
//定义"改变颜色"的函数
function changecolor()
{
    divchar.style.color="red";
    divchar.style.backgroundColor="#ccc";
}

//定义"改变宽高"的函数
function changeWidthHeight()
{
    divchar.style.width="300px";
    divchar.style.height="200px";
}

//定义"隐藏内容"的函数
function hide()
{
    divchar.style.display="none";
}

//定义"显示内容"的函数
function show()
{
    divchar.style.display="block";
}

//定义"取消设置"的函数
function delete()
{
    var sure=confirm();
    if(sure==true)
    {
       divchar.removeAttribute("style");
    }
}


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

提问者:快乐不假 2016-03-21 21:48

个回答

  • 从此浪迹天涯了无牵挂
    2016-03-22 01:55:04
    已采纳

     <form>


        <input type="button" value="改变颜色" onClick="changeColor()" >

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

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

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

      <!-- 注释掉的<input type="button" value="取消设置" onClick="reset()">-->

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

      </form>

      <script type="text/javascript">

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

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

    function changeColor(){

        mytarget.style.color="red";

        mytarget.style.backgroundColor="#ccc";


    }


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

    function changeWah(){

        mytarget.style.width="400px";

        mytarget.style.height="600px";

    }


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

    function hideContent(){

        mytarget.style.display="none";

    }

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

    function showContent(){

        mytarget.style.display="block";


    }

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

    function reset1(){

        var con=confirm("确定取消吗?");

        if(con==true){

            mytarget.removeAttribute('style');

        }

    }




    /*注释掉的

    function reset(){

        var con=confirm("确定取消吗?");

        if(con==true){

            mytarget.removeattribute('style');

        }}

    */

    </script>

    </body>

    </html>

    你跟我遇到的问题一样。。。其他的都没问题,就最后取消显示,怎么都不能实现。而且连弹框都弹不出来。找了半天,原因应该在函数的命名上。你看我注释掉的,跟你的一样。只是我命名是reset,你是delete。其他基本一样。后来我把reset改成reset1,就没有这样的问题了.

    我查了一下,有reset方法,但没有delete方法啊。找不到原因,你试一下,应该改个函数名就没问题了。以后函数命名的时候注意点。慢慢做多了怎么命名就都有经验了

  • 落花何须怜
    2016-03-21 23:06:56

    最后一个取消设置的写错了

  • _殺克重丶
    2016-03-21 22:47:42

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

     divchar.style.color="red";

    document.getElementById("txt").style.color="red";

    不是一样的吗?


    之前错误原因 声明的变量不像C那样是全局变量


  • qq_千水围城_0
    2016-03-21 22:28:37

    获取的值是“txt”,你的值是divchar

  • _殺克重丶
    2016-03-21 22:28:31

     var divchar=document.getElementById("txt"); 放到function里面