0

我想使用 jquery 在某个函数上模拟向上按键(数字 40)。

所以基本上:

function simulate_up() {
    // code to simulate up key (key code 40)
}

有任何想法吗?

干杯!

4

1 回答 1

0

看到这个;

var press = jQuery.Event("keypress");
press.ctrlKey = false;
press.which = 40;
$("your_slector").trigger(press);

这里

于 2013-03-17T15:19:55.690 回答