方變的 Javascript 熱鍵 ( 快速鍵 ) 框架函式庫 Shortcut.js
2010/09/17
這支library實在是非常地簡單易用, 而且在此網頁中馬上就可以測試其效果。
同時也提供了下面的example code, 只要將shortcut.js抓下來即可使用。
範例:
<script type="application/x-javascript" src="shortcut.js"></script>
<script type="application/x-javascript">
shortcut.add("Ctrl+B",function() {
alert("Bold");
});
</script>
如此一來只要按下 Ctrl + B 即可呼叫到我要的function.