如何在现有脚本中单击表行时激活这些文本输入?

发布于 2024-12-10 09:58:31 字数 182 浏览 0 评论 0原文

我当前有这个脚本: http://jsfiddle.net/26eVE/9/

我该如何制作当用户单击该行时,其他非活动输入字段是否处于活动状态?

编辑:当用户单击远离该行时,文本输入必须返回到非活动状态

I have this current script: http://jsfiddle.net/26eVE/9/

how can I make the other inactive input fields active when the user clicks the row?

EDIT: the text inputs must go back to their inactive state when the user clicks away from the row

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

2024-12-17 09:58:31

编辑:

我添加:

active = $this.hasClass("active");

        if(e.target.nodeName.toLowerCase() == "input" && active) {
        return;   
        }

允许输入单击而不取消行

完整代码: http://jsfiddle.net/26eVE/ 13/

edit:

I added:

active = $this.hasClass("active");

        if(e.target.nodeName.toLowerCase() == "input" && active) {
        return;   
        }

To allow input clicking without canceling the row

Full code: http://jsfiddle.net/26eVE/13/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文