我想在MVC的$(document).ready()
上设置一个dropdownlist选定值的输入类型textBox值,但是在dropdownChange
上工作时不会填充该值。
<input type="text" id="acctName" style="border: 1px solid black; width: 300px; height: 22px;" />
// Not working
$(function() {
var accountCode = String('@ViewBag.AccountCode');
$("#dropdownList option").each(function() {
if ($(this).val() == accountCode) {
$(this).attr('selected', 'selected');
$('#acctName')[0].value = $(this).val();
}
});
})
// Working
$('#dropdownList').change(function() {
$('#acctName')[0].value = $(this).val();
});