2012年5月5日

jQuery 快速鍵 plugin



簡介

jQuery Hotkeys 是一款讓你能夠輕鬆設定鍵盤按鍵的插件,使用它你可能很簡單的新增/移除鍵盤事件,而且它幾乎支援所有的鍵盤按鍵組合(key combination)



首先讓我們來看看如何使用這個插件吧
$(expression).bind(types, keys, handler); $(expression).unbind(types, handler); $(document).bind('keydown', 'ctrl+a', fn); // e.g. replace '$' sign with 'EUR' $('input.foo').bind('keyup', '$', function(){ this.value = this.value.replace('$', 'EUR'); });

型態

jQuery Hotkeys支援鍵盤下壓(keypress)、彈起(keyup)、及點擊(keydown)。


附註

如果你要使用組合鍵,那你的字串命名必須依著英文符號順序來命名,例如你要ctrl + alt + shift,這時字串必須這樣命名,"alt+ctrl+shift"。





沒有留言:

ShareThis