我希望浏览器的行为就像用户点击某些内容时按Tab键一样.在点击处理程序中,我尝试了以下方法:
var event = document.createEvent('KeyboardEvent'); event.initKeyEvent("keypress", true, true, null, false, false, false, false, 9, 0); this.input.focus()[0].dispatchEvent(event);
和jQuery:
this.input.focus().trigger({ type : 'keypress', which : 9 });
......我从这里拿走了.
第一种方法似乎是最好的选择,但并不是很有效.如果我将最后两个参数更改为98,98,确实在输入框中输入了'b'.但是,9,0和9,9(前者我从MDC网站上取得的)都在FF3下的firebug中给我这些错误:
Permission denied to get property XULElement.popupOpen [Break on this error] this.input.focus()[0].dispatchEvent(event); Permission denied to get property XULElement.overrideValue [Break on this error] this.input.focus()[0].dispatchEvent(event); Permission denied to get property XULElement.selectedIndex [Break on this error] this.input.focus()[0].dispatchEvent(event); Permission denied to set property XULElement.selectedIndex [Break on this error] this.input.focus()[0].dispatchEvent(event);
我听说过(没有明确定义'此类')事件是"不可信的",这可能解释了这些错误.
第二种方法导致我作为event.which传递的任何值作为event.which,但没有效果(即使我使用98而不是9,在框中没有输入'b'.)如果我尝试设置事件在我传递的对象中的.data,当事件被触发时它最终未定义.以下是我用来查看的代码:
$('#hi').keypress(function(e) { console.log(e); });
还有其他想法吗?