本文实例讲述了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相关内容感兴趣的读者可查看本站专题:《jQuery表格(table)操作技巧汇总》、《jQuery切换特效与技巧总结》、《jQuery扩展技巧总结》、《jQuery常用插件及用法总结》、《jQuery常见经典特效汇总》及《jquery选择器用法总结》
希望本文所述对大家jQuery程序设计有所帮助。
新闻热点
疑难解答