基于 HTML 中的复选框使行可编辑
我有一个 HTML 格式的表格。该表的内容是动态填充的。表的每一行都有文本框和一个复选框。当页面加载时,行中的所有文本框都将处于只读状态。
现在,如果选中该行中的复选框,我想将特定行中的文本框的状态更改为可编辑。此外,如果取消选中该复选框,文本框应设为只读。
我如何使用 Javascript 来完成这个任务?请帮我。
I have a table in HTML. The contents of this table are dynamically populated. Every row of the table has text boxes and one checkbox. When the page is loaded, all the text boxes in the rows will be in a read-only state.
Now, i want to change the state of the text boxes in a particular row to editable, if the check-box in that row is selected. Also, the text boxes should be made read-only if the check box is de-selected.
How could I accomplish this using Javascript? Please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
用普通的 JavaScript 来声明这一点将是纯粹的痛苦:)
我建议使用 jQuery,例如:
否则
这没有经过测试!
stating this with plain javascript would be pure pain :)
i suggest using jQuery, eg:
otherwise
this is not tested!
也许,您可以首先使用 if/else 语句处理复选框的单击事件来检查该复选框是否确实被选中。如果是,您可以使用复选框所在的行来查找不同单元格中的所有文本框并启用/禁用它们。
您使用的是 JQuery 还是普通的 Javascript?
Perhaps, you can start by handling the click event of the checkbox using an if/else statement to check if the checkbox is actually checked. If it is you can use the row within which the checkbox resides to find all the textboxes in the different cells and enable/disable them.
Are you using JQuery or plain Javascript?
如果你不介意使用 jQuery,你可以这样做:
或者类似的东西。我必须测试一下才能确定。
编辑以反映安德烈亚斯的评论。
If you don't mind using jQuery, you could do:
Or something like that. I'd have to test it to be sure.
Edited to reflect Andreas's comment.
如果您使用的是 Jquery,请尝试此代码片段(假设该复选框有一个名为“checkbox”的类)。
Try this snippet (assumes that the checkbox has a class called "checkbox") if you are using Jquery.