簡介
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');
});
沒有留言:
張貼留言