1

I have a button that is accessed by a keyboard shortcut but the users have to press ALT+Z. Is there anyway to let the users access the button by simply pressing Z (or some other key) without having to press ALT?

Many thanks,

<input style="display:none;" id='stopButton1' type="button" value="Z" onclick="stop('z')" accesskey="z" />
4

3 に答える 3

2

いいえ、純粋な HTML では不可能です。

JavaScript が必要です:keypressイベントを使用して特定の文字コードを検出し、何らかの関数を呼び出します。

于 2012-04-07T13:06:35.133 に答える