标签: javascript loops alerts
编辑以澄清:
是否有方法将代码插入alert()或prompt(),例如一种循环或在运行前或运行时向alert()或提示添加数据的方法?
-Thanks
答案 0 :(得分:1)
先做你的循环
for (var n = 0; n<= 50; n++) {varnum1= n*10 - 1;} /*some way to output data tothe alert*/ alert("starting string" + varnum1 + "end of string")