我是jquery的新手。当我选择1级或2级联赛时,html()可以工作两次,不起作用。是否有关于此错误的解决方案或替代方案。我不知道问题出在哪里。
$("#league").on('change', function() {
var leagueid = $(this).val();
//alert(leagueid);
if (lig > 0) {
$.ajax({
url: 'include/ajax.php?query=fixture',
type: 'POST',
data: {
lid: leagueid,
sid: <?php echo $curs_id; ?>
},
success: function(result) {
//alert(result);
if (result == 0) {
$("#alert").html('');
//$("#dates").slideDown();
FetchTeams(leagueid);
} else {
$("#dates").slideUp();
$("#alert").delay(600).queue(function() {
$(this).html("Fixture already exists!");
}).fadeIn(100);
$("#teams").html('');
}
}
});
} else {
$("#dates").slideUp();
$("#alert").html('');
}
});