0

我正在制作一个小型网络程序,它接收单词并按字母顺序或数字告诉你它们。我相信一切正常,除了在收集输入后显示单词。我尝试将这些词写到页面上,但它们没有显示出来,因为我相信您必须以某种方式更新页面,而我不知道该怎么做。

我的 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]);
}
4

1 回答 1

1

看起来你的 for 循环正在使用 newList,而它应该使用单词。

于 2013-09-22T00:13:37.950 回答