gpt4 book ai didi

javascript - 尝试在按钮单击时获取随机数

转载 作者:行者123 更新时间:2023-12-02 19:28:46 29 4
gpt4 key购买 nike

我正在尝试使用 javascript 获取 0-20 范围内的随机数,以便在用户单击按钮后显示在文本框中,但到目前为止我还没有成功。我的代码有什么错误?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Untitled 1</title>
</head>
<body>
<form><input name="code" id="code" type="text" value="" >
<script type="text/javascript">
function makeid()
{
var randomnumber=Math.floor(Math.random() * 20)
}
</script>
<input type="button" style="font-size:9pt" value="Generate Code" onclick="document.getElementById('code').value = makeid()">
</input>
</form>
</body>
</html>

最佳答案

您的函数需要返回一个值:

function makeid() {
return Math.floor(Math.random() * 20)
}

关于javascript - 尝试在按钮单击时获取随机数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11752100/

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