码迷,mamicode.com
首页 > 其他好文 > 详细

循环简单应用(2)

时间:2017-05-26 11:54:56      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:UI   简单应用   click   set   tom   charset   循环   ext   html   

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
<style>
li { height:30px; border-bottom:1px solid #333; }
</style>
<script>
window.onload = function (){
var oUl = document.getElementById(‘list‘);
var aLi = oUl.getElementsByTagName(‘li‘);
var arr = [ ‘今天‘, ‘明天‘, ‘后天‘ ];
var len = arr.length;

/*
aLi[0].onclick = function (){ alert(1); };
aLi[1].onclick = function (){ alert(1); };
aLi[2].onclick = function (){ alert(1); };
*/
// aLi.onclick = function (){ alert(1); };

for( var i=0; i<len; i++ ){

aLi[i].innerHTML = arr[i];

aLi[i].onclick = function (){
// alert(i); i => 3
};
}
};
</script>
</head>

<body>

<ul id="list">
<li></li>
<li></li>
<li></li>
</ul>

</body>
</html>

循环简单应用(2)

标签:UI   简单应用   click   set   tom   charset   循环   ext   html   

原文地址:http://www.cnblogs.com/zhousha929-/p/6907579.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!