日期:2014-05-16 浏览次数:20427 次
<script> var output=""; for(var x=1; x<10; x++) { output=output + "x="+ x; } alert(output); </script>
<script> var output=""; for(var x=1; x<10; x++) { output="x="+x; } alert(output); </script>