0
我使用jQuery使用下面的代碼重新填充DropDownListFor
:刷新MVC DropDownListFor與jQuery
$('#Teste).change(function() {
$.ajax({
type: 'GET',
url: '/Teste/Teste/Teste/' + $(this).val(),
dataType: 'json',
success: function (data) {
var ddl = $('#TesteTw);
ddl.empty();
$(data).each(function() {
ddl.append($('<option/>', {
value: this.Value
}).html(this.Text));
});
}
});
});
但HTML不刷新,我還是上了DropDownList
相同的項目。
雖然如果我用jQuery得到DropDownList
值,我會得到更新的值。
任何想法?