我绑定了keydown,return,这样的事件:
input
{
file
{
path => "test.json"
start_position => "beginning"
sincedb_path => "/dev/null"
exclude => "*.gz"
type => "posts"
codec => "json"
}
}
filter {
json {
source => "message"
}
}
output {
elasticsearch {
hosts => ["localhost:9200"]
index => "fb"
codec => "json"
}
}
如果我想在其他地方触发这个怎么办?
此触发器执行错误:
$('#inout').bind('keydown', 'return', function (evt){
someFunction();
});
我无法更改绑定方法
答案 0 :(得分:0)
您可以使用以下代码通过jQuery触发keydown事件:
var event = jQuery.Event('keydown');
event.which = 13; // A random key (Enter)
$('#inout').trigger(event);
您可以查看this JSFiddle中的示例。