easyui快捷键实现增删改(jquery.hotkeys.js插件)

版权声明:《==study hard and make progress every day==》 https://blog.csdn.net/qq_38225558/article/details/84825605

第一步:下载 jquery.hotkeys.js插件  http://plugins.jquery.com/hotkeys/

第二步:js引入

<!-- jquery的按键扩展支持 -->
<script type="text/javascript" src="/js/plugin/shortcut_key/jquery.hotkeys.js"></script>

第三步:使用

$(function () {
    // 快捷键支持增删改--绑定相应的事件--按DEL就会执行删除,按SHIFT+1是添加,SHIFT+2是修改
    //注意:需要jquery.hotkeys.js插件哦!!
    $(document).bind('keydown', 'del', zhengqing.delete);//zhengqing.delete:我的删除方法
    $(document).bind('keydown', 'Shift+1', zhengqing.add);
    $(document).bind('keydown', 'Shift+2', zhengqing.edit);
})

温馨小提示:其他快捷键可去查找文档说明哦~~

猜你喜欢

转载自blog.csdn.net/qq_38225558/article/details/84825605
今日推荐