var input = $(<input type="text"/>)
$('body').append( input );
input.focus(); // Listen this event !
$(document).on('focus','input', function(){
alert('focus');
})
答案 0 :(得分:1)
尝试触发尚未设置的事件处理程序,移动焦点设置器 -
var input = $(<input type="text"/>);
$('body').append( input );
input.on('focus', function(){
alert('focus');
});
input.focus(); /* place it here, under your event handler */
/* another */
input.trigger("focus");
使用'input'的直接处理程序编辑/更新