Javascript-这些随机数,为什么它们不起作用?

时间:2019-10-21 23:52:50

标签: javascript

我正在尝试生成最多899个随机数,但我不知道为什么该脚本对我不起作用。

SEE DEMO

我在这里做什么错了?

谢谢!

HTML:

<div id="actualuno"><p>Oyentes en línea: </p><p id="ahorauno"></p></div>

脚本:

function oyentes(){
  var n=Math.floor(899*Math.random()+1)
  document.getElementById("ahorauno").innerHTML=n
};

1 个答案:

答案 0 :(得分:2)

您必须致电oyentes

function oyentes() {
  var n = Math.floor(899 * Math.random() + 1);
  document.getElementById("ahorauno").innerHTML = n
};
oyentes()
#actualuno {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  text-align: center
}

#actualuno p {
  display: inline-block;
  text-align: center;
  font-size: 1em;
  margin: 0 auto
}

#ahorauno {
  margin-left: 6px !important
}
<div id="actualuno">
  <p>Oyentes en línea: </p>
  <p id="ahorauno"></p>
</div>

希望有帮助,