jQuery EasyUI textbox datagrid 绑定 回车事件

在onLoadSuccess方法中增加监听事件,按下enter键后调用datagrid的reload方法。

1 onLoadSuccess:function() {

2                             $('input:text').keydown(function(e) {

3                                 if(e.keyCode == 13) {

4                                     datagrid.datagrid('reload');

5                                 }

6                             });

7                         }
View Code

 

你可能感兴趣的:(jquery easyui)