嘿,我有一种可以在页面加载时自动授予随机数的表格,但是无论如何,我可以让它代替随机数甚至数字和字符授予随机数吗?
这是我得到的:
document.getElementById('Codefield').value = Math.floor(Math.random() * 1000000000000);
<form method='post' action='secret_code.php'>
<input type="text" name="" size="40" id="Codefield">
<input type="submit" class='side' value="Get Code" id="submit" name="submit">
</form>
答案 0 :(得分:-1)
您可以通过以下代码进行操作:
document.getElementById('Codefield').value = Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15);
<form method='post' action='secret_code.php'>
<input type="text" name="" size="40" id="Codefield">
<input type="submit" class='side' value="Get Code" id="submit" name="submit">
</form>