Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Internet Explorer 上,当 textarea 绑定 keyup 或 keypress 时,键盘快捷键 Ctrl+Z Ctrl+Y 不起作用!
像这样:
http://jsbin.com/ivaca
第二个文本区域,如何修复 IE 中的这个错误?
我在您的页面中注意到此代码。我似乎什么都不做,但我这就是问题所在。(我在我的电脑上试过——运行没有这个块的页面——工作正常)
Event.on('el-b', 'keypress', function(e) { var el = document.createElement('p'); document.body.appendChild(el); document.body.removeChild(el); });