Easyui combobox自动提示

时间:14-03-18 栏目:EasyUI 作者:zongyan86 评论:0 点击: 4,439 次

[HTML]:
<table>  
    <tr>  
    <td>供应商: 
    </td>  
    <td>  
        <select id="sel" name="memberName" class="easyui-combobox" style="width:400px;" data-options="required:true">  
        </select>  
    </td>  
    </tr>  
</table>  
 


$(function(){  
    $('#sel').combobox({  
        //url:urlStr,  
        valueField:'memberName',  
        textField:'memberName',  
        onChange:function (newValue, oldValue){  
            if(newValue !=null){  
                //alert(newValue+oldValue);  
                var urlStr ="/ciccpsMember/member/getMemberSelectByName?name=" + encodeURIComponent(newValue);  
                $("#sel").combobox("reload",urlStr);  
            }  
        }  
    });  

});  

提醒:默认有个q参数。

web开发分享



声明: 本文由( zongyan86 )原创编译,转载请保留链接: Easyui combobox自动提示

关注我们