如何制作多个提示框并按字母顺序对其输入进行排序,然后使用JavaScript在屏幕上显示?
由于
答案 0 :(得分:-2)
<强>按顺序强>
如果你在谈论几乎过时的原生javascrtipt函数prompt()
那么:
var array=[];questions=['A?','B?','C?'],current=0;
function q(question){
array.push(prompt(question,'write here')+' question number:'+current);
if(current<questions.length){
next()
}else{
array.sort()// needs a proper sort function
alert(array.join("\n"));
};
}
function next(){
q(questions[current++]);
}
next();
<强>演示强>