easyui-combobox绑定回车事件注意事项
Posted Mr_伍先生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了easyui-combobox绑定回车事件注意事项相关的知识,希望对你有一定的参考价值。
回车事件的定义的位置必须是easyui-combobox数据加载的后面,才有效果。
html文件:
<select id="aucBrandNo" class="easyui-combobox" name="aucBrandNo" style="width: 160px;" data-options="required:true,onHidePanel:function(){validateComboboxInputValue(this)}"> </select>
JS文件定义回车事件:
//combobx数据的加载
function auctionSelect(aucBrandNos,aucBrandNo) { var aucBrandNoStr = ‘‘; $.each(aucBrandNos, function(index, temp) { aucBrandNoStr += ‘<option value=‘ + temp.key + ‘>‘ + temp.name.substring(1,4) + temp.name.substring(0,1) + ‘</option>‘; }); $(‘#aucBrandNo‘).html(aucBrandNoStr); $(‘#aucBrandNo‘).combobox({}); $(‘#aucBrandNo‘).combobox(‘setValue‘, aucBrandNo); keyDownEventFun();//回车事件公共方法 };
function keyDownEventFun(){ $(‘#aucBrandNo‘).textbox(‘textbox‘).keydown(function (event) { if (event.keyCode == 13) { //TODO } }); }
以上是关于easyui-combobox绑定回车事件注意事项的主要内容,如果未能解决你的问题,请参考以下文章