Blogger Information
Blog 38
fans 0
comment 1
visits 36358
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
For循环小试例
夜澜风的博客
Original
582 people have browsed it

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>DOM</title>
</head>
<body>
<script type="text/javascript">
function qc() {

 var jieguo="";

 var arr=["宝马","奔驰","奥迪"]

  for (var i =0; i<arr.length; i++) {
  	jieguo+= arr[i] + "<br>"
  }
  document.getElementById('ce').innerHTML=jieguo;
}

</script>

 <button onclick="qc()">选汽车</button>
 <p id="ce"></p>	
	
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例


Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post