1

How can I clear the options of select box after refresh ... I have two select boxes and both of their values after refresh didn't clear or reset i am working in code igniter here is my code.

    <?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

4 回答 4

1

代替

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

尝试这个

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

是给你的简单 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);
        }
    });
});
于 2013-01-12T18:26:25.497 回答
1

尝试

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

empty()方法将清除所有 html

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

于 2013-01-12T18:28:06.417 回答
0

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

于 2013-01-12T18:34:43.560 回答
0
$('#items')
    .find('option')
    .remove()
    .end();

IE6

$('#items')
    .empty();
于 2013-01-12T18:24:49.990 回答