标签: jquery internet-explorer events
IE11上的回车键有问题。 我的代码看起来像这样。
$(document).on('change', '.js-jump-to-page', function(e) { if ( e.which == 13 ) { console.log('Enter'); e.preventDefault(); } ... ...
当我点击向上或向下箭头时,立即触发超出条件范围的任何内容。好像没有读取回车键。我做错了什么?