我有一个生成唯一编号供参考的系统。这是我在 jquery 中的函数:
function random() {
return Math.floor(Math.random() * 100000000);
}
function generateRandomNumber() {
$("#GenerateCode").val(random());
}
window.onload = function () {
generateRandomNumber();
}
这是我的标记(asp):
<div id="step3" class="formwiz">
<h4>Step 3: Reference Number</h4>
<br clear="all" />
<p>
<label>Reference Number</label>
<span class="field">
<input type="text" id="GenerateCode" name="GenerateCode" class="smallinput" disabled="disabled" /> <small style="color: red">Please write the numbers at the back of your check</small>
</span>
</p>
</div>
此功能适用于 html(输入)...但是当我从输入转移到 ast 文本框时,数字不会发布在文本框中...我需要使用 getelementbyid。?
请帮忙...