EasyUI中easyui-combobox的onchange事件。

html:

   <select id="cbox" class="easyui-combobox" name="dept" style="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'
                    });
                }
            });
        })
原文地址:https://www.cnblogs.com/longdb/p/7612685.html