在JQuery / Ajax中刷新后清除或重置下拉选项

时间:2013-01-12 18:15:58

标签: php javascript jquery ajax json

刷新后如何清除选择框的选项...我有两个选择框,刷新后两个值都没有清除或重置 我在代码点火器工作 这是我的代码。

    <?php echo form_dropdown('cat_id', $records2, '#', 'class="cho" id="category"');?>


 <script type="text/javascript">// 
 $(document).ready(function(){       
    $('#category').change(function(){        
        $("#items > option").remove(); //it is not working
        var category_id = $('#category').val();  
        $.ajax({
            type: "POST",
            url: "testController/get_items/"+category_id,

            success: function(items)
            {
                $.each(items,function(item_id,item_name) 
                {
                    var opt = $('<option />'); 
                    opt.val(item_id);
                    opt.text(item_name);
                    $('#items').append(opt); 
                });
            }

        });

    });
});
// ]]>

4 个答案:

答案 0 :(得分:1)

尝试

 $("#items").empty();

empty()方法将清除所有html

API参考http://api.jquery.com/empty

答案 1 :(得分:0)

$('#items')
    .find('option')
    .remove()
    .end();

IE6

$('#items')
    .empty();

答案 2 :(得分:0)

而不是

$("#items > option").remove(); //it is not working

试试这个

$("#items).html("");

Here对你来说是简单的jsFiddle

<强>更新

您可能还会考虑首先构建选项标记,然后立即替换它,而不是依次添加项目。

$("#category").change(function(){        
    var category_id = $("#category").val();  
    $.ajax({
        type: "POST",
        url: "testController/get_items/" + category_id,
        success: function(items)
        {
            var options = "";
            $.each(items, function(item_id, item_name) 
            {
                options += "<option value=\"" + item_id + "\">" + item_name + "</option>";
            });
            $("#items").html(options);
        }
    });
});

答案 3 :(得分:0)

document.ready事件处理程序中没有任何内容。一切都包含在内  $('#category')。change(function(){表示页面刷新时不会发生任何事情。