jQuery easyui 中 combobox的事件处理吗

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery easyui 中 combobox的事件处理吗相关的知识,希望对你有一定的参考价值。

参考技术A 我想它是意思是easyui会传递新的值和旧的值给你写的driverOnChanage()方法,
你应该定义成
<script type="text/javascript">
function driverOnChanage(newValue,oldValue)
alert(newValue + oldValue);

</script>
这样测试下
参考技术B 1,如果直接在combobox里面加onchange()事件没有效果,
2,查看API可以发现里面提供了一个onChange事件,格式如下,
$('#cc').change(function(newValue,oldValue)
alert("...");
);
3,cc表示combobox的id

以上是关于jQuery easyui 中 combobox的事件处理吗的主要内容,如果未能解决你的问题,请参考以下文章

jQuery EasyUI 1.4.4 Combobox无法检索中文输入的问题

jquery easyui combobox 添加添加选择项

jQuery EasyUI combobox多选及赋值

easyui combobox 选择问题

jquery easyui combobox如何动态加载.json数据

jquery easyui 中的combobox读取后台传递过来的json数据的例子