尝试创建一个单词加扰器,它从文本框中获取文本,对字母进行加扰,然后在不同的文本框中重复它们。代码必须使用循环将文本分布在字母数组中。一旦我到达 Math.floor 对象,我对如何继续感到困惑。
相关代码:
<script type="text/javascript">
var word = document.getElementById("input").value;
var wordLength = word.length;
var scrambled = "";
for (var i = 0; i < wordlength; i++) {
var charIndex = Math.floor(Math.random() * word.length);
scrambled += word.charAt(charIndex);
word = word.substr(0, charIndex) + word.substr(charIndex + 1);
}
document.getElementById("output").value = scrambled;
}
</script>
<head>
<body>
<form>
<input type="text" name="input" id="input" value="" maxlength="10"> <input type="text" name="output" id="output" value="" disabled="true"><br/>
<input type="button" name="generate" value="Generate" onClick="Scramble(this.form)">
</form>
</body>
</html>