如何用html制作随机数?

时间:2015-01-31 18:18:22

标签: html

我想用html制作随机数字 这有什么办法吗? java脚本的功能是.random();但我想只使用html

2 个答案:

答案 0 :(得分:4)

您不能使用JavaScript Math.random()

答案 1 :(得分:0)

HTML只是描述网页的内容布局的一种方式。要添加动态内容或互动,必须使用JavaScript。

在这种情况下:



window.onload = function() {
  document.getElementById("random-number").innerHTML = Math.random(); 
};

<div id="random-number"></div>
&#13;
&#13;
&#13;