Advertisement
jiue123

example eq() jquery

Jul 22nd, 2014
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.61 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Tiêu đề</title>
  6. <script src="http://code.jquery.com/jquery-latest.js"></script>
  7. <script>
  8. $(function(){
  9.     $('li').eq(3).css('background-color','yellow');
  10. });
  11. </script>
  12. </head>
  13.  
  14. <body>
  15. <ul>
  16. <li>Thành phần thứ 1</li>
  17. <li>Thành phần thứ 2</li>
  18. <li>Thành phần thứ 3</li>
  19. <li>Thành phần thứ 4</li>
  20. <li>Thành phần thứ 5</li>
  21. </ul>
  22. </body>
  23. </html>
  24.  
  25.  
  26. Thành phần thứ 1
  27. Thành phần thứ 2
  28. Thành phần thứ 3
  29. Thành phần thứ 4(browser will show "backgruond-color:yellow" in here)
  30. Thành phần thứ 5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement