本文介绍了如何使用jquery在mvc项目中创建键盘快捷键的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在我的mvc项目中使用jQuery。我正在创建用于保存,取消,添加新的键盘快捷键,我正在使用Alt + S,Alt + C,Alt + S,它正在使用chrome,在firefox上,它的Alt + S无法正常工作。



我的尝试:



I am Using jQuery in my mvc project .I am creating keyboard shortcut for saving, canceling ,Add new for that I am using Alt+S,Alt+C,Alt+S,its working on chrome,on firefox ,its Alt+S is not working .

What I have tried:

$(document).on('keydown', function (e) {

    // e.preventDefault();
    e.preventDefault ? e.preventDefault() : event.returnValue = false;

    var key = e.which || e.keyCode;
    if (e.altKey === true && key === 78) {-Colling a Add Function
        //  AddCompany(); -i adding a new company
        alert('Are You Want to Add New Company ');
    }
    if (e.altKey === true && key === 83) {-Colling a save Function
        // funSaveCreation();- save function
        alert('Are You Want to Save Company ');
    }
    if (e.altKey === true && key === 67) {--Colling a cancel Function
        // Cancel();- cancel function
        alert('Are You Want to Cancel ');
    }
});

推荐答案


这篇关于如何使用jquery在mvc项目中创建键盘快捷键的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 13:00