首页 > 语言 > JavaScript > 正文

JQuery使用index方法获取Jquery对象数组下标的方法

2024-05-06 16:20:30
字体:
来源:转载
供稿:网友

这篇文章主要介绍了JQuery使用index方法获取Jquery对象数组下标的方法,涉及jQuery中index方法的使用技巧,需要的朋友可以参考下

本文实例讲述了JQuery使用index方法获取Jquery对象数组下标的方法。分享给大家供大家参考。具体实现方法如下:

 

 
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4. <head> 
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  6. <title>index方法获取Jquery对象的数组下标</title> 
  7. <style type="text/css"
  8. #main{ 
  9. width:600px; 
  10. border:1px solid green; 
  11. margin:auto; 
  12. padding:10px; 
  13. #tbl{ 
  14. border-collapse:collapse; 
  15. border-top:1px solid red; 
  16. border-left:1px solid red; 
  17. margin:auto; 
  18. #tbl td{ 
  19. width:60px; 
  20. height:60px; 
  21. border-collapse:collapse; 
  22. border-bottom:1px solid red; 
  23. border-right:1px solid red; 
  24. </style> 
  25. <script src="jquery-1.6.2.min.js" type="text/javascript"></script> 
  26. <script type="text/javascript"
  27. var oldColor; 
  28. $(function () { 
  29. $("#tbl tr").hover( 
  30. function () { 
  31. oldColor = $(this).css("backgroundColor"); 
  32. $(this).css("backgroundColor""yellow"); 
  33. }, 
  34. function () { 
  35. $(this).css("backgroundColor", oldColor); 
  36. }); 
  37. $("#tbl tr").click(function () { 
  38. alert($("#tbl tr").index($(this))); //获取元素下标 
  39. }); 
  40. }); 
  41. </script> 
  42. </head> 
  43. <body> 
  44. <div id="main"
  45. <table id="tbl"
  46. <tr> 
  47. <td>1</td><td>1</td><td>1</td> 
  48. </tr> 
  49. <tr> 
  50. <td class="tdClass">2</td><td>2</td><td>2</td> 
  51. </tr> 
  52. <tr> 
  53. <td>3</td><td>3</td><td>3</td> 
  54. </tr> 
  55. <tr> 
  56. <td>4</td><td>4</td><td class="tdClass">4</td> 
  57. </tr> 
  58. <tr> 
  59. <td>5</td><td>5</td><td>5</td> 
  60. </tr> 
  61. <tr> 
  62. <td>6</td><td>6</td><td class="tdClass">6</td> 
  63. </tr> 
  64. </table> 
  65. </div> 
  66. </body> 
  67. </html> 

希望本文所述对大家的jQuery程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选