如何在 JavaScript 中模拟按键事件?
要模拟按键事件,请使用事件处理程序。您可以尝试运行以下代码来模拟按键事件
例子
<html><head>
<script src = "https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js">
</script>
<script>
jQuery(document).ready(function($) {
$('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');
}, 2000);
</script>
</head>
<body>
<p>press any key</p>
</body>
</html>
以上是 如何在 JavaScript 中模拟按键事件? 的全部内容, 来源链接: utcz.com/z/341429.html