1

这是与我的问题有关的 JSFiddle。http://jsfiddle.net/kane/MFJUv/

我尝试了几件事来显示/隐藏下拉列表(div id:machinedropdown)。

在加载时,我希望隐藏机器下拉菜单,但是当用户选择“机器”单选按钮时,它需要显示。任何人都可以为我建议一个解决方案吗?

<div data-role="content" id="radio"
    <form>
      <fieldset data-role="controlgroup" data-type="horizontal" class="center-controlgroup">
            <input name="radio-choice-h-6" id="radio-choice-h-6a" type="radio" checked="checked" value="on">
            <label for="radio-choice-h-6a">Run</label>
            <input name="radio-choice-h-6" id="radio-choice-h-6b" type="radio" value="off">
            <label for="radio-choice-h-6b">Swim</label>

            <!-- ON SELECT I NEED TO HIDE THE "div id = "machinedropdown" -->
            <input name="radio-choice-h-6" id="radio-choice-h-6c" type="radio" value="off">
            <label for="radio-choice-h-6c">Machine</label>
         </fieldset>
</form>
</div>

<div data-role="content" id="machinedropdown"
  <label class="select" for="select-choice-1">Select, native menu</label>
        <select name="select-choice-1" id="select-choice-1">
        <option value="standard">Machine 1</option>
        <option value="rush">Machine 2</option>
        <option value="express">Machine 3</option>
        <option value="overnight">Machine 4</option>
  </select>
</div>
4

1 回答 1

3

一种方法是检查无线电是否被选中,并且它是包含特定于机器的 ID 的元素。


首先,您将下拉菜单的初始状态设置为隐藏:

$('#machinedropdown').hide();

接下来,您在无线电输入上监听 change 事件 - 如果输入已被选中并且具有特定于machine输入 ( radio-choice-h-6c) 的 ID,则您将下拉菜单设置为显示 - 否则,将其设置回隐藏 (这样当您将选定的单选按钮从更改machine为另一个选项,下拉菜单仍未显示):

$('input').change(function(){ // On change of radio buttons
    if ($(this).is(':checked') && $(this).attr('id') == 'radio-choice-h-6c') {
      $('#machinedropdown').show();
      // If the radio button is checked and has the machine id, show the drop down.
    }
    else {
      $('#machinedropdown').hide();
      // Else, re-hide it.
    }
});

jsFiddle在这里。

于 2013-05-20T00:06:40.477 回答