2

我想提前感谢您为此花费的任何时间和精力。好的,所以我有一个脚本,它应该在页面加载后 3 秒后模拟按键事件。我希望这个按键可以运行键盘快捷键,但它所做的只是按下键。一旦按下,我怎样才能让它真正运行快捷方式?不确定这是否可能。再次感谢。

<script>
 setTimeout( function(){
// jQuery plugin. Called on a jQuery object, not directly.
jQuery.fn.simulateKeyPress = function(character) {
  // Internally calls jQuery.event.trigger
  // with arguments (Event, data, elem). That last arguments is very important!
  jQuery(this).trigger({ type: 'keypress', which: character.charCodeAt(0) });
};

jQuery(document).ready( function($) {
  // Bind event handler
  $( 'body' ).keypress( function(e) {
    alert( String.fromCharCode( e.which ) );
    console.log(e);
  });
  // Simulate the key press
  $( 'body' ).simulateKeyPress('z');
});
 }, 3000); //3 seconds

</script>

<script type="text/javascript">
// define a handler
function doc_keyUp(e) {

    // this would test for whichever key is 40 and the ctrl key at the same time
    if (e.ctrlKey && e.keyCode == 122) {
        // call your function to do the thing
        pauseSound();
    }
}
// register the handler 
document.addEventListener('keyup', doc_keyUp, false);
</script>
4

2 回答 2

10

如果您尝试触发某些浏览器或系统范围的键盘快捷键,那么这是一个死胡同——出于安全原因,它无法完成。如果可能的话,您将拥有遍布 Internet 的页面,这些页面(例如)甚至无需询问(通过使用 Javascript 触发 CTRL+B 快捷方式)即可将它们自己添加到您的书签中。

于 2012-12-11T13:19:27.163 回答
2

你不先添加你的处理程序....这样做

jQuery(document).ready(function($) {
    // Bind event handler
    $('body').keypress(function(e) {
        alert(String.fromCharCode(e.which));
    });
});
jQuery.fn.simulateKeyPress = function(character) {
    jQuery(this).trigger({
        type: 'keypress',
        which: character.charCodeAt(0)
    });
};

setTimeout(function() {
    $('body').simulateKeyPress('z');
}, 3000); //3 seconds

测试示例:http: //jsfiddle.net/x8a25/1/

于 2012-12-11T13:19:19.773 回答