首页 > 代码库 > easyui给select控件绑定change事件

easyui给select控件绑定change事件

一般的做法是使用jQuery来绑定,例如:

$("#id").change(function(){    alert("change事件绑定");});

  当给select加上class="easyui-combobox"这样的样式后,上面的绑定方式失效不相应,正确的方式如下:

 <select required="false" class="easyui combobox"name="city" style="width:180px">      <option value="http://www.mamicode.com/1">北京</option>      <option value="http://www.mamicode.com/2">上海</option>      <option value="http://www.mamicode.com/3">广州</option></select>

  

 //select 加上class="easyui combobox"后会自动给select加上id属性,值和name的值相同 $("#city").combobox({        	onChange:function(n,o){                      //这里的参数n是select改变后的value,o是改变前的value                       alert(n);        	}        });

  

 

easyui给select控件绑定change事件