设置该行输入的属性

发布于 2024-10-12 01:50:53 字数 833 浏览 2 评论 0原文

我有一个包含 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 技术交流群。

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

发布评论

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

评论(3

梦里的微风 2024-10-19 01:50:53

parent(":input[type='text']") 表示“如果它是类型为 text 的输入元素,请给我父节点。这显然不是”不是你想要的!你需要使用find

$("#table1 :checkbox").click(function(){
    $(this)
       .closest('tr') // find the parent row
           .find(":input[type='text']") // find text elements in that row
               .attr('disabled',false) // enable them
           .end() // go back to the row
           .siblings() // get its siblings
               .find(":input[type='text']") // find text elements in those rows
                   .attr('disabled',true); // disable them
});

parent(":input[type='text']") says "give me the parent node if it is an input element with the type text. This obviously isn't what you want! You need to use find:

$("#table1 :checkbox").click(function(){
    $(this)
       .closest('tr') // find the parent row
           .find(":input[type='text']") // find text elements in that row
               .attr('disabled',false) // enable them
           .end() // go back to the row
           .siblings() // get its siblings
               .find(":input[type='text']") // find text elements in those rows
                   .attr('disabled',true); // disable them
});
走过海棠暮 2024-10-19 01:50:53

您可以观察所有复选框的更改,这些更改将在选择和取消选择时触发。如果选择,我们可以将 disabled 属性设置为空字符串以“启用”,如果取消选择“disabled”以重新禁用输入:

$('#table1 :checkbox').change(function() {
    $(this).closest('tr').find('input[type="text"]').attr('disabled',
        this.checked ? '' : '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:

$('#table1 :checkbox').change(function() {
    $(this).closest('tr').find('input[type="text"]').attr('disabled',
        this.checked ? '' : 'disabled'
    );
});

DEMO: http://jsfiddle.net/marcuswhybrow/8WtvK/

神妖 2024-10-19 01:50:53
$('#table1 input:checkbox').click(function() {
    var row = $(this).closest('tr');

    row.find('input:text').attr('disabled', false);
    row.siblings().find('input:text').attr('disabled', true);
});

现场演示: http://jsfiddle.net/buAmd/< /a>

我在演示中使用了单选框,因为两个框不能同时选中。

$('#table1 input:checkbox').click(function() {
    var row = $(this).closest('tr');

    row.find('input:text').attr('disabled', false);
    row.siblings().find('input:text').attr('disabled', true);
});

Live demo: http://jsfiddle.net/buAmd/

I used radio boxes in the demo since both boxes cannot be checked at the same time.

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