<ul> | |
<li></li> | |
<li></li> | |
<li></li> | |
</ul> | |
<script> | |
var aLi = document.getElementsByTagName("li"); | |
for(var i=0;i<aLi.length;i++){ | |
aLi[i].index = i; | |
aLi[i].onclick = function (){ | |
this.style.backgroundColor = "yellow"; | |
this.innerHTML = this.index; | |
} | |
} | |
</script> |