Math问题:怎么设置成,我点一次,就更新一次数,我现在弄得是只能点一次

来源:7-16 随机数 random()

doits

2016-03-10 22:00

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Mathint </title>
<script type="text/javascript">
var i=Math.random()*10;
function abc(){
    document.write(Math.round(i));
    }
</script>
</head>
<body>
<input type="button" value="刷新" onclick="abc()">
</body>
</html>


写回答 关注

2回答

  • Deevan
    2016-03-10 23:12:15

    需要用到location对象里的reload()方法。语法是:location.reload()

    <!DOCTYPE html>

    <html>

    <head>

    <meta charset="utf-8">

    <title>编程练习</title>

    <script>

    var mynum=Math.random();

    Math.round(mynum*10);

    document.write(Math.round(mynum*10));


    function contxt()

    {

    location.reload();

    }


    </script>

    </head>

    <body>

    <button type="button" onclick="contxt()">点击这里</button>

    </body>

    </html>

  • 寒冰凌霜
    2016-03-10 22:50:15

    <!DOCTYPE html>

    <html>

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    <title>Mathint </title>

    <script type="text/javascript">


    function abc(){

    var i=Math.random()*10;

        document.getElementById("abc").innerText=Math.round(i);

        }

    </script>

    </head>

    <body>

    <input type="button" value="刷新" onclick="abc()">

    <div id="abc"><div>

    </body>

    </html>


    寒冰凌霜 回复doits

    document.getElementById("abc").innerText=Math.round(i);是直接修改div里的内容,按钮点击一次,就修改一次数据,document.write()的话,需要reload()刷新页面,才能多次更新。

    2016-03-13 17:32:11

    共 2 条回复 >

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468061 学习 · 21891 问题

查看课程

相似问题