我正在制作一个小型网络程序,它接受单词并按字母顺序返回,或数字,数字。我相信一切正常,除了在收集输入后显示单词。我尝试将这些单词写入页面,但它们没有显示,因为我认为你必须以某种方式更新页面,我不知道如何这样做。
我的JavaScript代码:
var input = null;
var words = new Array();
alert("Enter one word at a time in the next prompts. Enter passw0rd to finish/stop.");
do {
input = prompt("Enter word...enter passw0rd to exit.");
if ( input != "passw0rd" ){
words.push(input);
}
else{
break;
}
}while( input != "passw0rd" );
words.sort();
alert("Your words alphabetically are...");
for ( var i = 0; i < newList.length; i++ )
{
document.writeln(words[i]);
}
答案 0 :(得分:1)
看起来你的for循环正在使用newList,它应该使用单词。