jQuery实现动态生成表格并为行绑定单击变色动作的方法
捂汗县长 人气:0本文实例讲述了jQuery实现动态生成表格并为行绑定单击变色动作的方法。分享给大家供大家参考,具体如下:
<html> <head> <meta charset="utf-8"> <title>jquery表格单击变色</title> <script type="text/javascript" src="jquery-1.7.2.min.js"></script> <script type="text/javascript"> $(function(){ /////////////////以下动态生成10行2列的表格 for(i=1;i<=10;i++) { $("#mytable").append("<tr><td> </td><td> </td></tr>"); } /////////////表格生成结束 /////////////为生成的行添加单击变色动作 $("#mytable tr").click(function(){ if($(this).hasClass("redcss")) { $(this).siblings("tr").removeClass("redcss"); } else { $(this).addClass("redcss"); $(this).siblings("tr").removeClass("redcss"); } }) }) </script> <style> .redcss{ background-color:#900; } </style> </head> <body> <table width="200" border="1" id="mytable"></table> </table> </body> </html>
运行效果如下:
希望本文所述对大家jQuery程序设计有所帮助。
加载全部内容