根据下拉显示/隐藏动态文本框

时间:2013-03-27 00:47:06

标签: php jquery

我试图弄清楚如何让jQuery根据下拉菜单选项显示/隐藏动态生成的文本框。我的JS技能非常有限。我在while循环中创建了以下内容,具体取决于人数:

<select name="location[<?=$pid?>]" id="location[<?=$pid?>]">
<option value="<?=$loc_id?>" selected><?=$loc_name?> </option>
<option value="Other">Other</option>
<option value="Other">--------</option>
<? $query_loc = mysqli_query($link, "SELECT * FROM locations WHERE loc_app = 'Y' ORDER BY loc_name ASC");
while($fetch_loc = mysqli_fetch_array($query_loc)){
     $loc_id = $fetch_loc['loc_id'];
     $loc_name = $fetch_loc['loc_name'];
     ?>
     <option value="<?=$loc_id?>"><?=$loc_name?></option>
     <?
}  ?>
</select>
<input name="location_other[<?=$pid?>]" type="text" id="location_other[<?=$pid?>]" style="display:none" />

jQuery函数:

<script type='text/javascript'>
$(window).load(function(){
    $('#location').change(function () { 
        if ($(this).val() == "Other") { 
            $('#location_other').show(); 
        } else { 
            $('#location_other').hide(); 
        } 
    }); 
});
</script>

我需要使用$ pid变量保存和序列化的id,以便以后处理。还有另一种方法可以在这些上调用jquery函数吗?

HTML输出如下所示:

<select name="location[287]" id="location[287]">
        <option value="1" selected>A</option>
        <option value="Other">Other</option>
        <option value="Other">--------</option>
        <option value="12">B</option>
        <option value="12">C</option>            
      </select>
      <input name="location_other[287]" type="text" id="location_other[287]" style="display:none" />

2 个答案:

答案 0 :(得分:0)

尝试

$(window).load(function(){
    $('#location').change(function () {
        $('input[id^=location_other]').hide();
        if ($(this).val() == "Other") { 
            $('#location_other').show(); 
        } else { 
            $('#location_other' + $(this).val()).hide(); 
        } 
    }); 
});

答案 1 :(得分:0)

试试这个

<select name="location[287]" id="location[287]">
    <option value="Other">Other</option>
    <option value="one">One</option>
    <option value="two">Two</option>
    <option value="three">Three</option>
</select>
<input name="location_other[287]" type="text" id="location_other" style="display:none" />


<script type='text/javascript'>
    $(window).load(function() {
        if ($('select[id^="location"]').val() == "Other") {
            $('#location_other').show();
        } else {
            $('#location_other').hide();
        }

        $('select[id^="location"]').change(function() {
            if ($(this).val() == "Other") {
                $('#location_other').show();
            } else {
                $('#location_other').hide();
            }
        });
    });
</script>