有没有办法在mootools中捕获x浏览器粘贴事件?
我想捕获用户何时使用 mootools 事件系统将数据粘贴到文本输入字段中。
有人有这方面的经验吗?
I want to capture when a user pastes data into a text input field using mootools event system.
Anyone have experience of this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最近,
paste
事件得到了更好的支持:IE 从 2000 年左右开始就有它(我认为是 IE 5.5),Firefox 从 3.0 开始就有它,WebKit 已经有几年了(不确定具体时间)。您应该尽可能使用它,并在其他情况下回退到检测 ctrl-v 或 shift-ins,或者使用计时器轮询输入框的值。The
paste
event has become better supported in recent times: IE has had it since around 2000 (IE 5.5, I think), Firefox since 3.0, WebKit for a couple of years (not sure exactly when). You should use it where possible and fall back to detecting ctrl-v or shift-ins in other cases, or polling the input box's value using a timer.只要按下“ctrl+v”键,该函数就会被触发。
Mootools 文档: http://www.mootools.net/docs/more/Interface/Keyboard
编辑:HTML 和 JS 代码
The function will get fired whenever the keys 'ctrl+v' are pressed.
Mootools docs : http://www.mootools.net/docs/more/Interface/Keyboard
EDIT : HTML and JS Code