如何使用 jquery 使 html 表像 phpmyadmin 中使用的那样动态?
我想你们都知道 phpmyadmin 中的表是什么样子的(我说的是显示 SQL 表的结构和数据的 html 表)。我正在寻找向我的 html 表添加类似的功能,其中如果用户单击表行,则会选中表左侧的复选框,如果再次单击它,该复选框将变为默认状态这是未选中的,就像在 phpmyadmin 界面中一样。另外,tr 颜色应该在行单击时更改,并在第二次单击后再次更改为 css 指定的默认颜色,再次与 phpmyadmin 中的工作方式相同。
I guess you all know how tables look like in phpmyadmin (I'm talking about the html tables which show the structure and data of the SQL tables). I'm looking to add a similar functionality to my html tables in which if the user clicks the table row, a checkbox on the left of the table would be checked, and if they click it again, the checkbox would turn to the default state which is unchecked, just like in phpmyadmin interface. Also tr color should change upon row click and change again to the default color specified by the css after the second click, again the same way it works in phpmyadmin.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
非常简单: http://jsfiddle.net/ZBF2r/2/
首先是悬停效果:
然后是点击效果:
然后切换复选框:
Very simple: http://jsfiddle.net/ZBF2r/2/
First the hover effect:
Then the click effect:
And then toggle the checkbox: