读书人

ajax中关于combobox的属性设立

发布时间: 2013-06-25 23:45:41 作者: rapoo

ajax中关于combobox的属性设置
有如下一段ajax,想要实现只能从combobox的下拉框选择,不能编辑的功能。网上查了下说是style属性,设置了貌似也没有用。在ajax里面该怎样设置呢。

$(".changeLeader").click(function(){
$(this).parent().children().eq(1).html("<input name='newLeader' class='combobox' />");

$('.combobox').combobox({
url:'GetStudentServlet',
valueField:"sno",
textField:"sname",
panelHeight:"auto"
});
})
Ajax ComboBox
[解决办法]
配置一下combox的配置项forceselection:true

读书人网 >Ajax

热点推荐