我想根据下拉选择将不同的内容加载到 div 中。这是到目前为止的代码:
$(document).ready(function(){
var x;
$('#loadCategory').change(function(){
if ($(this).val() == "videos"){
x = 'videos.txt';
}
if ($(this).val() == "ads"){
x = 'ads.txt';
}
if ($(this).val() == "widgets"){
x = 'widgets.txt';
}
if ($(this).val() == "images"){
x = 'images.txt';
}else{
x = 'videos.txt';
}
});
$('.content').load(x,function(){
$('img').wrap('<li></li>');
$('.media-container').pajinate({
items_per_page : 7
});
$( ".media-container li" ).draggable({
appendTo: ".playlist ol",
helper: "clone"
});
});
当我输入“alert(x);” 在 .change() 中,它显示了正确的值,但不会更改 .content 中的内容。我错过了什么?