我正在尝试生成最大为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
};
最佳答案
您必须致电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>
希望能有所帮助,
关于javascript - Javascript-这些随机数,为什么它们不起作用?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58495471/