按了按钮没有任何反应

来源:4-1 编程挑战

Arthasv

2016-05-09 18:50

按了按钮没有任何反应,哪里出问题了?

写回答 关注

2回答

  • lodgelisir3322286
    2016-05-09 23:22:34

    你绑定onclick="函数"事件没有?

  • Mardanof2
    2016-05-09 19:58:42

      var set={

    changeColor:function(){

        txt.style.color="red";

        txt.style.backgroundColor="#ccc";

    },


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

    changeSize:function(){

        txt.style.width="300px";

        txt.style.height="300px";

    },


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

    Hide:function(){

        txt.style.display="none";

    },


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

    Show:function(){

        txt.style.display="block";

    },


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

    reset:function(){

    var message=confirm("你确定要重置所有设置么?");

     if(message==true){

     txt.removeAttribute('style');

       }

      }

    }

    每个函数要用逗号分开

    Hide:function:()你这儿也多了一个:

JavaScript入门篇

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

739817 学习 · 9566 问题

查看课程

相似问题