liuyifan 5 years ago
parent
commit
493a2569fc
1 changed files with 10 additions and 1 deletions
  1. 10 1
      CallCenterWeb.UI/carouselManagement/js/carouselManagement.js

+ 10 - 1
CallCenterWeb.UI/carouselManagement/js/carouselManagement.js

221
         tab: function(pic, layero){
221
         tab: function(pic, layero){
222
         }
222
         }
223
     });
223
     });
224
-}
224
+}
225
+
226
+//按enter搜索
227
+$('#pictureName').bind('keypress', function (event) {
228
+if (event.keyCode == "13") {
229
+        initTable();
230
+        return false;
231
+    }
232
+});
233
+