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

为什么我的按钮点一下就消失了

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Math </title>
<script type="text/javascript">
    function myrandom()
    {
        document.write(Math.round(Math.random()*10))
    }
    document.write(Math.round(Math.random()*10))
</script>
</head>
<body>
    <form>
    <input type="button" value="获取随机整数" onclick="myrandom()">
    </form>
</body>
</html>


正在回答

1 回答

<script type="text/javascript">
    function myrandom()
    {
        alert(Math.round(Math.random()*10));
    }
</script>

你把中间代码换成这个,可能是由于document.write  方法把按钮覆盖了吧!这种情况我也没有遇到过,奇怪 奇怪 

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

半颜半心 提问者

好吧,谢谢。
2017-09-08 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么我的按钮点一下就消失了

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