使用Javascript显示多个提示框的结果

时间:2014-06-09 15:20:26

标签: javascript

如何制作多个提示框并按字母顺序对其输入进行排序,然后使用JavaScript在屏幕上显示?

由于

1 个答案:

答案 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();

<强>演示

http://jsfiddle.net/c7GnX/