javascript獲取元素的順序程式碼例項

admin發表於2017-04-12

本章節分享一段程式碼例項,它實現了點選元素能夠獲取此元素的在列表中的順序。

程式碼中有批量事件處理函式的繫結和閉包的應用。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
li {
  list-style: none;
  margin: 10px;
  background: #008200;
  width: 50px;
  height: 50px;
  text-align: center;
  color: #fff;
  line-height: 50px;
}
</style>
<script>
window.onload = function () {
  (function () {
    var lis = document.getElementById("ul").children;
    for (var i = 0; i < lis.length; i++) {
      !function (i) {
        lis[i].onclick = function () {
          alert(i + 1)
        }
      }(i)
    }
  })()
}
</script>
</head>
<body>
<ul id="ul">
  <li>1</li>
  <li>2</li>
  <li>3</li>
</ul>
</body>
</html>

相關文章