-2

我试图弄清楚如何让 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>

我需要保留 id 并使用 $pid 变量进行序列化以供以后处理。还有另一种方法可以在这些上调用 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" />
4

2 回答 2

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(); 
        } 
    }); 
});
于 2013-03-27T00:50:26.497 回答
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>
于 2013-03-27T09:02:56.983 回答