2

我正在寻找 Javascript 或 jQuery 解决方案,两者都可以。

无论如何,当用户为单选按钮选择一个选项时,我希望显示一组不同的复选框。因此,如果用户选择按名称,则会显示名称复选框。然后当用户选择按标题时,名称复选框将消失,标题复选框将显示。

当页面加载且未选择选项时,不应出现任何复选框

这是 HTML 的样子:

<table>
    <tr>
        <td><input type="radio" name="selectType" value="byName" />By Name</td>
        <td><input type="radio" name="selectType" value="byTitle" />By Title</td>
    </tr>
    <tr>
        <td>
            <input type="checkbox" name="selectName1" />Name 1</td>
    </tr>
    <tr>
        <td>
            <input type="checkbox" name="selectName1" />Name 2</td>
    </tr>
    <tr>
        <td>
            <input type="checkbox" name="selectTitle1" />Title 1</td>
    </tr>
    <tr>
        <td>
            <input type="checkbox" name="selectTitle2" />Title 2</td>
    </tr>
</table>

这段代码会是什么样子?

4

4 回答 4

1

我会使用数据属性来引用复选框组。通过这种方式,您可以使您的代码真正灵活且不引人注目:

$('.type-check').change(function() {
    $('.type-group').hide().filter('.type-group-' + $(this).data('type')).show();
});

HTML 示例:

<tr>
    <td><input type="radio" name="selectType" class="type-check" data-type="name" value="byName" /> By Name</td>
    <td><input type="radio" name="selectType" class="type-check" data-type="title" value="byTitle" /> By Title</td>
</tr>

http://jsfiddle.net/D8s9G/

于 2013-02-26T19:44:37.160 回答
0

首先给你的复选框类..

<input type="checkbox" name="selectName1" class="name"/>Name 1
<input type="checkbox" name="selectName2" class="name"/>Name 2

对标题做同样的事情,给他们一个“标题”的类名,也为你的收音机..

<input type="radio" name="selectType" value="byName" class="radioName" />

然后;

$(document).ready(function () {
   $('.radioName').click(function () {
      $('.name').show();
      $('.title').hide();
   });

   //same logic for titles..
});
于 2013-02-26T19:37:14.593 回答
0

这是一个可行的解决方案 - http://jsfiddle.net/FloydPink/fkvSg/

jQuery:

$('.name').closest('tr').toggle(false);
$('.title').closest('tr').toggle(false);

$('input[name=selectType]').change(function () {
    var byNameSelected = $(this).val() == 'byName';
    $('.name').closest('tr').toggle(byNameSelected);
    $('.title').closest('tr').toggle(!byNameSelected);
});

HTML:

<table>
    <tr>
        <td>
            <input type="radio" name="selectType" value="byName" />By Name</td>
        <td>
            <input type="radio" name="selectType" value="byTitle" />By Title</td>
    </tr>
    <tr>
        <td>
            <input type="checkbox" class="name" name="selectName1" />Name 1</td>
    </tr>
    <tr>
        <td>
            <input type="checkbox" class="name" name="selectName2" />Name 2</td>
    </tr>
    <tr>
        <td>
            <input type="checkbox" class="title" name="selectTitle1" />Title 1</td>
    </tr>
    <tr>
        <td>
            <input type="checkbox" class="title" name="selectTitle2" />Title 2</td>
    </tr>
</table>

我已经为所有四个复选框添加了 css 类,以便可以对“名称”和“标题”复选框进行分组。

于 2013-02-26T19:42:33.083 回答
0

您可以选择输入及其名称并显示或隐藏相关输入:

    $('input[value*="byName"]').click( function() {

    $('input[name*="selectName1"]').show();
    $('input[name*="selectTitle1"]').hide();
}

    $('input[value*="byTitle"]').click( function() {

    $('input[name*="selectName1"]').hide();
    $('input[name*="selectTitle1"]').show();
}
于 2013-02-26T19:42:51.310 回答