gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-01 00:31:23 25 4
gpt4 key购买 nike

我正在尝试生成最大 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 - 这些随机数,为什么不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58495471/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com