div默认无法聚焦,所以不能触发keyUp事件。
1. 为其添加tabIndex,可以使其能聚焦。
$('div').attr('tabIndex',0); $('div').focus();
2. 此外,div如果包含a链接,也能聚焦。
<div> <a href='#'>必须有内容</a> </div>