复制、剪切和粘贴事件在 Opera 中不起作用
为什么 jquery .bind()
在 Opera 中不能用于 剪切复制粘贴
事件?
$(document).ready(function(){
$('#txtInput').bind("cut copy paste",function(e) {
e.preventDefault();
});
});
Why jquery .bind()
not working in opera for cut copy paste
events?
$(document).ready(function(){
$('#txtInput').bind("cut copy paste",function(e) {
e.preventDefault();
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
[更新] 据我所知,Opera 在 12.10 版本中实现了剪贴板 API,尽管它已经在其渲染引擎中实现了相当长的一段时间 (Presto/2.10.292)。
此问题与 jQuery 的
bind
功能无关,而是与 Opera 在 12.10 版本之前不支持剪切、复制和粘贴事件有关。[Update] Opera implemented the Clipboard API in version 12.10 as far as I can tell, although it has been implemented in their Rendering Engine for quite some time (Presto/2.10.292).
This issue is not related to jQuery's
bind
function but rather to the fact that Opera didn't support cut, copy and paste events before version 12.10.那么替代方案呢?
what about alternative?