我坚持在 iframe 内的输入上停止ENTER键。
这适用于跨浏览器,在同一页面内:
$("#input").keypress(function (event) {
console.log(event.which); //works good
if (event.which == 13) {
return false;
}
});
这不起作用停止/捕获 iFrame 内的按键事件。
$("#my_iframe").contents().keypress(function (event) {
console.log(event.which); // nothing loged
if (event.which == 13) {
return false;
}
});
我错过了什么?有跨浏览器解决方案吗?