如何使用 jquery 使 html 表像 phpmyadmin 中使用的那样动态?

发布于 2024-12-09 19:06:29 字数 225 浏览 0 评论 0原文

我想你们都知道 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

看轻我的陪伴 2024-12-16 19:06:29

非常简单: http://jsfiddle.net/ZBF2r/2/

首先是悬停效果:

$('tr').bind('mouseover mouseout', function() {
    $(this).toggleClass("hover");
});

然后是点击效果:

$('tr').bind('click', function() {
    $(this).toggleClass("active");

然后切换复选框:

    $(this).find("input[type=checkbox]").prop("checked",
        (!$(this).find("input[type=checkbox]").prop("checked"))
    );
});

Very simple: http://jsfiddle.net/ZBF2r/2/

First the hover effect:

$('tr').bind('mouseover mouseout', function() {
    $(this).toggleClass("hover");
});

Then the click effect:

$('tr').bind('click', function() {
    $(this).toggleClass("active");

And then toggle the checkbox:

    $(this).find("input[type=checkbox]").prop("checked",
        (!$(this).find("input[type=checkbox]").prop("checked"))
    );
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文