设置该行输入的属性
我有一个包含 3 行 Jquery 的表,
<table id="table1">
<tr>
<td><input type="text" disabled="disabled" value="200"/></td>
<td><input type="text" disabled="disabled" value="300"/></td>
<td><input type="checkbox"/></td>
<tr>
<tr>
<td><input type="text" disabled="disabled" value="400"/></td>
<td><input type="text" disabled="disabled" value="600"/></td>
<td><input type="checkbox"/></td>
<tr>
</table>
当有人单击复选框时,我想更改该行上 2 个输入的 attr 并使它们可编辑,但如果有人单击另一行上的复选框,则必须禁用先前启用的输入,并且新的输入将被禁用。一个已启用
这就是我的想法,但它不起作用
$("#table1 :checkbox").click(function(){
$(this).parent(":input[type='text']").attr('disabled',false);
});
I have a table with 3 rows
<table id="table1">
<tr>
<td><input type="text" disabled="disabled" value="200"/></td>
<td><input type="text" disabled="disabled" value="300"/></td>
<td><input type="checkbox"/></td>
<tr>
<tr>
<td><input type="text" disabled="disabled" value="400"/></td>
<td><input type="text" disabled="disabled" value="600"/></td>
<td><input type="checkbox"/></td>
<tr>
</table>
Jquery when someone clicks the checkbox i would like to change the attr of the 2 inputs on that row and make them editable but if someone clicks the checkbox on another row the previously enabled input must be disabled and the new one enabled
This is what i thought but it doesnt work
$("#table1 :checkbox").click(function(){
$(this).parent(":input[type='text']").attr('disabled',false);
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
parent(":input[type='text']")
表示“如果它是类型为text
的输入元素,请给我父节点。这显然不是”不是你想要的!你需要使用find
:parent(":input[type='text']")
says "give me the parent node if it is an input element with the typetext
. This obviously isn't what you want! You need to usefind
:您可以观察所有复选框的更改,这些更改将在选择和取消选择时触发。如果选择,我们可以将
disabled
属性设置为空字符串以“启用”,如果取消选择“disabled”以重新禁用输入:DEMO: http://jsfiddle.net/marcuswhybrow/8WtvK/
You can watch watch for changes to all of your checkboxes, which will fire on both selections and deselections. If selected we can set the
disabled
attribute to an empty string in order to "enable", and if deselected to "disabled" in order to re-disable the inputs:DEMO: http://jsfiddle.net/marcuswhybrow/8WtvK/
现场演示: http://jsfiddle.net/buAmd/< /a>
我在演示中使用了单选框,因为两个框不能同时选中。
Live demo: http://jsfiddle.net/buAmd/
I used radio boxes in the demo since both boxes cannot be checked at the same time.