我正在尝试使用jQuery构建在线角色创建者应用的用户界面。我试图一键随机生成字符统计。这是我第一次在非平凡的应用程序中使用jQuery。
问题是,当我单击按钮时,表单内部没有生成数字。如果我删除了禁用的属性,它仍然不起作用,所以我知道这不是问题。
如果我要刺中它,我会猜测jQuery中的$()不喜欢接受变量,但是如果是这样,我不知道这样做的正确方法。在jQuery网站上一键填写多个表单的示例对于此目的没有用,因为我需要确保分别调用dice函数来填充每个表单。
我的JavaScript代码如下所示:
$(document).ready(function(){
//stats as an array
stats = ["#smarts", "#rwp", "#driving", "#cool", "#bod", "#luck", "#looks", "#bonk"];
//roll dice function
function dice (x, n, y) {
var result = 0;
for(i = 0; i < x; i++) {
result = result + Math.floor((Math.random() * n) + 1);
}
result = result + y;
return result;
}
//roll each stat function
function rollStats(stats) {
for(stat in stats) {
$(stat).val(dice(1, 6, 0));
}
}
//on button click roll each stat
$("#stats").click(rollStats(stats));
});
作为参考,我的html表单的相关部分如下所示:
<form class="create-teenager">
Smarts:
<input type="number" name="smarts" id="smarts" disabled />
<br/><br/>
Relationship with Parents:
<input type="number" name="rwp" id="rwp" disabled />
<br/><br/>
Driving:
<input type="number" name="driving" id="driving" disabled />
<br/><br/>
Cool:
<input type="number" name="cool" id="cool" disabled />
<br/><br/>
Bod:
<input type="number" name="bod" id="bod" disabled />
<br/><br/>
Luck:
<input type="number" name="luck" id="luck" disabled />
<br/><br/>
Looks:
<input type="number" name="looks" id="looks" disabled />
<br/><br/>
Bonk:
<input type="number" name="bonk" id="bonk" disabled />
<br/><br/>
<button id="stats">Roll Stats</button>
</form>
最佳答案
首先,我建议您从表单中拉出按钮,或者防止出现默认情况。
试试这个fiddle。
<form class="create-teenager">
Smarts:
<input type="number" name="smarts" id="smarts" disabled />
<br/><br/>
Relationship with Parents:
<input type="number" name="rwp" id="rwp" disabled />
<br/><br/>
Driving:
<input type="text" name="driving" id="driving" />
<br/><br/>
Cool:
<input type="number" name="cool" id="cool" />
<br/><br/>
Bod:
<input type="number" name="bod" id="bod" disabled />
<br/><br/>
Luck:
<input type="number" name="luck" id="luck" disabled />
<br/><br/>
Looks:
<input type="number" name="looks" id="looks" disabled />
<br/><br/>
Bonk:
<input type="number" name="bonk" id="bonk" disabled />
<br/><br/>
滚动统计
并尝试此脚本
$(document).ready(function(){
//stats as an array
stats = ["#smarts", "#rwp", "#driving", "#cool", "#bod", "#luck", "#looks", "#bonk"];
//roll dice function
function dice (x, n, y) {
var resultNumber = 0;
for(i = 0; i < x; i++) {
resultNumber = Math.floor((Math.random() * n) + 1) + y;
}
console.log(resultNumber);
return resultNumber;
}
//on button click roll each stat
$("#stats").click(function() {
for(stat in stats) {
$(stats[stat]).val(dice(1, 6, 0));
}
});
});
关于javascript - 一键式填充多个具有随机值的输入,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34687547/