我正在使用jeresig's jQuery Hotkeys library启用可以选择网页上文本区域的热键。但是,当我使用热键时,它会将文本插入文本区域而不是仅选择它,覆盖以前的内容,这不是我想要的。有解决方案吗?
HTML:
<input id='test' type='text' value='content'> <span class='button'>Button</span>
JavaScript的:
$(document).ready(function () {
// Clicking button selects associated text area
$('.button').click(function () {
$(this).siblings('input:text').focus();
});
// Hotkeys for text area
$(document).bind('keypress', 'a', function () {
$('#test').focus()
});
});
答案 0 :(得分:2)
不要使用keypress
事件,它可以执行多次。请改用keyup
。