• 欢迎访问一起聊聊,欢迎加入一起聊聊 QQ群
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏一起聊聊吧

jQuery监听剪贴、复制、粘贴等动作代码

程序教程 admin 2020-07-19 09:49:49 854次 0条 未收录

jQuery监听剪贴、复制、粘贴等动作代码

$('input').bind('paste', function () {
    var element = this;
    setTimeout(function () {
        var text = $(element).val();
        //do something with text
    }, 100);
});
$('#editor').live('input paste', function (e) {
    if (e.target.id == 'editor') {
        $('<textarea></textarea>').attr('id', 'paste').appendTo('#editMode');
        $('#paste').focus();
        setTimeout($(this).paste, 250);
    }
});
$('#Text1').bind('copy', function (e) {
    alert('copying text!');
});
$('#Text1').bind('paste', function (e) {
    alert('pasting text!');
});
$('#Text1').bind('cut', function (e) {
    alert('cut text!');
});

一起聊聊 , 版权所有丨如未注明 , 均为原创
转载请注明原文链接:jQuery监听剪贴、复制、粘贴等动作代码
喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址