EasyUI中easyui-combobox的onchange事件。

Posted longdb

tags:

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

html:

   <select id="cbox" class="easyui-combobox" name="dept" style="width:200px;">
                        <option value="opd">delphi</option>
                        <option>.net</option>
                        <option>vb</option>
                        <option>JQuery</option>
                        <option>JQuery-EasyUI</option>
                    </select>

js:

   //easyui-combobox的onchange事件。
        $(function () {
            $("#cbox").combobox({
                onChange: function (nvalue, ovalue) {
                    $("#dg").datagrid(‘reload‘, {
                        bobject: nvalue,
                        bscore: ‘90‘
                    });
                }
            });
        })

 

以上是关于EasyUI中easyui-combobox的onchange事件。的主要内容,如果未能解决你的问题,请参考以下文章

easyui-combobox 取值问题

如何能实现easyui-combobox中的值change事件?

怎么给easyui-combobox赋值

怎么给easyui-combobox 赋值

easyui-combobox绑定回车事件注意事项

请教如何获取easyui-combobox下拉菜单的多个选中值