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

reset函数运行不了,是什么鬼?????​

reset函数运行不了,是什么鬼?????

正在回答

4 回答

reset是关键字,不能用否则有冲突,你可以改成其他名字,这种简单而且涉及操作的英文如果出问题了,实在找不到原因基本上都可以注意一下是不是关键字冲突。

0 回复 有任何疑惑可以回复我~
改一下函数名就可以了,不能用reset,会有冲突的。


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

其他的都能用就reset不行

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

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

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

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

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

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

  </form>

  <script type="text/javascript">

    var text=document.getElementById('con');

    var box=document.getElementById('txt');

    function changecolor(){

        text.style.color='red';

        box.style.backgroundColor='gray';

    }

    function changewidth(){

        var box=document.getElementById('txt');

        box.style.width='200px';

        box.style.height='500px';

    }

  function content(){

      box.style.display="none";

  }

  function display(){

      box.style.display="block";

  }

    function reset(){

        var srs = confirm("确认取消设置?");

        if (srs==true)

        {

            box.style.color = "black";

            box.style.backgroundColor = "white";

            box.style.width = orignWidth;

            box.style.height = orignHeight;

            box.style.display = "block";

        }

    }

  </script>

</body>

</html>


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

举报

0/150
提交
取消

reset函数运行不了,是什么鬼?????​

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