jQuery输入框仅接受粘贴操作

时间:2015-09-08 03:21:39

标签: jquery

我正在进行输入验证,我希望用户只进行复制和粘贴操作。场景是:他们从其他页面复制参考号,然后粘贴到我的输入框。我不希望他们手动输入参考号以避免拼写错误。

这是我到目前为止所做的事情:

$(".reference_no").bind({       
    paste : function(e){
        // i want to get the data from clipboard. how?
    }
});

1 个答案:

答案 0 :(得分:0)

像这样使用:

$(".reference_no").bind({       
    paste : function(e){
        // i want to get the data from clipboard. how?
       var data = e.originalEvent.clipboardData.getData('Text');
       console.log(data);
    }
});