此代码在 IE 6-8 中不起作用。为什么?
$(".put").keydown(function (e) {
if (e.keyCode == 13) {
if ($(this).is(":focus")) {
$(this).submit().select();
}
return false;
}
});
这是完整的页面https://rawgithub.com/ruslankh/Kurchatovy/master/index.html
谢谢 :)