我有一个名为number的文本框,我想要自动生成值。
<label>Number</</label>
<input id="numb" name="number" type="text"/>
此处在文本框中,字段值必须自动生成。像1,2等等。
我有一个文本框,其中的值必须从1开始自动填充,点击“保存”按钮后,新值应填入文本框中,依此类推。
如何填写这些值?
有人可以告诉我该怎么做?
答案 0 :(得分:2)
您可以使用jQuery text function!在给定时间填充文本框,您可以使用 setInterval 定义。
答案 1 :(得分:0)
<html>
<head>
<title></title>
</head>
<script type="text/javascript">
var t, max, i;
function Increase(amount) {
max = amount;
i = parseInt(document.getElementById("count").value);
t = setInterval("SetIncrease()", 1000);
}
function SetIncrease() {
document.getElementById("count").value = ++i;
if(i == max) {
clearTimeout(t);
}
}
</script>
<body onLoad="Increase(36);">
<input id="count" type="text" value="1" >
</body>
</html>
如果不需要最大限制,您可以删除该条件