我需要将此设置为我的列表框的默认值,任何正文都可以帮助我。
感谢
$(document).ready(function () {
var targetid = '<%:ViewData["target"] %>';
if (targetid != null) {
$("#lstCodelist").val(targetid); //// I need to set this targetid as default selected value for lstCodelist
}
答案 0 :(得分:3)
将 n 设置为您希望设置为所选项目的索引。
$("#lstCodelist option").eq(n).attr('selected','selected')
答案 1 :(得分:1)
答案 2 :(得分:0)
$(“#ListBox”)[0] .selectedIndex = 0
答案 3 :(得分:0)
对我有用。你可以试试
$("#foo").val("")