谢谢指正!!

来源:4-1 编程挑战

慕粉1847212977

2017-01-20 15:45

<form>

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

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

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

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

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

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

  </form>

  <script type="text/javascript">

定义"改变颜色"的函数

  function haa()

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


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

  function hb()

     document.getElementById("txt").style.width="450px";

     document.getElementById("txt").style.height="250px";

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

    function hc()

     document.getElementById("txt").style.display="none";


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

    function hd()

    document.getElementById("txt").style.display="block";


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

  var hd=confirm("恢复原始值?");

    if hd==true

    {document.write("yes")};

    else

    {document.wtite("no")};

    


写回答 关注

2回答

  • G丶求知的小白
    2017-01-21 00:56:34

    function hd()

    {  document.getElementById("txt").removeAttribute('style');
      document.getElementById("con").removeAttribute('style');

    }

  • 慕仔5714522
    2017-01-20 16:12:46

    忘给函数加花括号了吧……

    取消设置不是removeAttribute(“style”)吗?

JavaScript入门篇

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

739817 学习 · 9566 问题

查看课程

相似问题