问问题
82 次
2 回答
1
在回调开始时清空 select 的内容。
$.get('category1.xml', function(d){
// Empty the current contents
$('#carMake').empty();
$(d).find('category').each(function(){
...
});
});
$.get('category2.xml', function(d){
// Empty the current contents
$('#carModel').empty();
$(d).find('category').each(function(){
...
});
});
于 2013-02-21T12:16:04.877 回答
1
It should work correctly.
$.get('category1.xml', function(d){
$('#carMake').empty();
$(d).find('category').each(function(){
var $category = $(this);
var categoryTitle = $category.attr("name");
var categoryID = $category.attr("id");
var html = '<option value="' + categoryID + '">' + categoryTitle + '</option>';
$('#carMake').append($(html));
$('#loading').fadeOut('slow', function() {
$('#loading').hide();
});
});
于 2013-02-21T12:19:40.933 回答