easyui combobox 点击下拉框才加载数据

用onshowpanel 事件,页面和js 不要加url属性;url属性事件触发时赋值。

onShowPanel : function(){
    var s=$(this).combobox('getData')
    if(s.length==0){  
       $(this).combobox('options').url= "/game/gameList.action?operateStatusId=1";
       $(this).combobox('reload');
    }
  },

相关推荐