1、easyui-textbox与easyui-combobox的onChange事件
//在页面载入后执行下面函数
$(‘#xxx_id‘).textbox({ onChange: function(value) { alert(‘hello‘);
}
});
2、easyui获取元素值的方法
var value = $("#xxx_id").combobox("getValue"); var value = $("#xxx_id").textbox("getValue");
easyui-textbox与easyui-combobox的onChange事件
原文:https://www.cnblogs.com/fanrenren/p/10432883.html