$.fn.fillSelect = function (data) {
return this.clearSelect().each(function () {
if (this.tagName == 'SELECT') {
var dropdownList = this;
$.each(data, function (index, optionData) {
var option = new Option(optionData.Text, optionData.Value);
if ($.browser.msie) {
dropdownList.add(option);
} else {
dropdownList.add(option, null);
}
});
// code for access "selectedindex"
}
});
};
以上是使用 jQuery 动态生成下拉列表的代码片段。
我需要动态设置selectedIndex属性值,以便更早地显示保存的值。我将把该代码插入到// code for access "selectedindex"
上面的代码中。那么如何设置selectedIndex属性dropdownList
呢?