Just wondering if there is any way to trigger a Ctrl + CLICK (or just any key + CLICK) in jQuery. I am thinking of something like the following:
var e = jQuery.Event("keydown");
e.which = 17;
$('a.'+id, this._parent).trigger(e).trigger('click');
or
var e = jQuery.Event("click");
e.ctrlKey = true;
$('a.'+id, this._parent).trigger(e);
Thank you!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…