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

不知道什么原因是失败的,试验人家的没有问题啊

  <form>
  <!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->
    <input type="button" value="改变颜色" onClick="1()">  
    <input type="button" value="改变宽高" onClick="2()">
    <input type="button" value="隐藏内容" onClick="3()">
    <input type="button" value="显示内容" onClick="4()">
    <input type="button" value="取消设置" onClick="5()">
  </form>
  <script type="text/javascript">
    var txt=document.getElementById("txt");
        function 1()
        {
            txt.style.color="red";
            txt.style.backgroundColor="#ccc";
        }
        function 2()
        {
            txt.style.width="300px";
            txt.style.height="300px";
        }
        function 3()
        {
            txt.style.display="none";
        }
        function 4()
        {
            txt.style.display="block";
        }
        function 5()
        {
            var a=confirm();
            if(a==true)
            {
                txt.removeAttribute("style");
            }
        }
  </script>

正在回答

2 回答

字母或者下划线开头吧。。。。。--

0 回复 有任何疑惑可以回复我~

好吧,不能用数字做函数名称

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

不知道什么原因是失败的,试验人家的没有问题啊

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