模拟输入按键而不指定元素

时间:2017-10-03 23:19:02

标签: javascript jquery

我尝试过sendkeys插件和其他人。

有没有办法模拟没有元素的Enter键?

$("div.myclass").click(); // Put focus on my element - works
$("div.myclass span").sendkeys("Test"); // using sendkeys plugin send the input - works.

setTimeout(function(){
console.log('trigger');
//$("div._1mf").trigger({type: 'keydown', key: 'enter'}); // this one just insert new line...
e = jQuery.Event("keypress")
e.which = 13
    $("div.myclass").keypress(function(){ // this one doesn't work
    }).trigger(e)
},2000);

我已经将元素聚焦和输入插入,我需要模拟Enter按键发送文本,如何才能完成?

1 个答案:

答案 0 :(得分:0)

我认为您可能想要做的是提交您的输入所在的表单?