为了账号安全,请及时绑定邮箱和手机立即绑定

求大神看看哪有问题 点击按钮都没有反应呢?

 <form>

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

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

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

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

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

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

  </form>

  <script type="text/javascript">

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

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

function color(){

    temp.style.color="green";

    temp.style.backgroundColor="#CCC";

}


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

function width_height(){

    temp.style.width=300px;

    temp.style.height=200px;

}


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

function display(){

    temp.style.display="none";

}


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

function play(){

    temp.style.display="block";

}


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

function confirm(){

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

    if(message==true){

        temp.removeAttribute("style");

    }

}

正在回答

1 回答

我这里测试你的代码,是有反应的

1 回复 有任何疑惑可以回复我~
#1

qq_过气网红_0 提问者

多谢啦 可能是我电脑的问题
2018-03-02 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

求大神看看哪有问题 点击按钮都没有反应呢?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信