本文介绍了AccessKey在Firefox中无法正常工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在asp.net中开发一个web应用程序。

我需要实现快捷键。

因此,在按钮I中选择AccessKey为''Q' '。

在Chorme和IE中由'ALT + Q'执行。

但在 Firefox中我需要按ALT + SHIFT + Q.





这是我的问题我需要firefox来执行命令''ALT + Q'',额外班次应该删除。



如何实现这个。

请帮助。

I am developing a web application in asp.net.
Where I need to implement shortcut keys.
So, in button I select AccessKey to ''Q''.
in Chorme and IE its executing by ''ALT+Q''.
but in Firefox I need to pres ALT+SHIFT+Q.


this is my problem I need firefox to execute the command by ''ALT+Q'' only, extra shift should be remove.

How to implement this.
Please help.

<asp:Button ID="Button4" runat="server" onclick="Button4_Click" Text="Button" AccessKey="Q" />

推荐答案


这篇关于AccessKey在Firefox中无法正常工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 13:34