1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <ul id="list1">
- <li>1</li>
- <li>2</li>
- <li>3</li>
- </ul>
- <button id="btn">按钮</button>
- <script>
- var aLi = document.getElementsByTagName('li')
- var list1 = document.getElementById('list1')
- var btn = document.getElementById('btn')
- // for (var i = 0; i < aLi.length; i++) {
- // aLi[i].onclick = function(){
- // console.log(this.innerHTML)
- // }
- // }
- btn.onclick = function () {
- var xx = document.createElement('li')
- xx.innerHTML = Math.random()
- list1.appendChild(xx)
- }
- list1.onclick = function (e) {
- // console.log(e.target.tagName)
- if (e.target.tagName == 'LI') {
- console.log(e.target.innerHTML)
- }
- // console.log(this)
- }
- </script>
- </body>
- </html>
|