- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Document</title>
- <style type="text/css">
- li{
- background-color: red;
- }
- </style>
- <script type="text/javascript">
- window.onload=function(){
- var list =document.getElementsByTagName(‘li‘);
- for(var i=0;i<list.length;i++){
- list[i].onclick = (function(n){
- return function(){
- alert(n);
- }
- })(i)
- }
- }
- }
- </script>
- </head>
- <body>
- <ul>
- <li>1</li>
- <li>2</li>
- <li>3</li>
- <li>4</li>
- <li>5</li>
- </ul>
- </body>
- </html>
时间: 2024-11-14 22:45:51