抓糊输入。我正在寻找一种方法来净化我粘贴到浏览器中的输入,这可以用jQuery吗?到目前为止,我已经想出了这样的办法:$(this).live(pasteEventName, function(e) {
// this is where i would like to sanitize my input
return false;}不幸的是,由于这个“小”问题,我的发展已经到了一个尖锐的阶段。如果有人能给我指明正确的方向,我真的会成为一个快乐的露营者。
3 回答
一只甜甜圈
TA贡献1836条经验 获得超5个赞
$('input').on('paste', function () { var element = this; setTimeout(function () { var text = $(element).val(); // do something with text }, 100);});
largeQ
TA贡献2039条经验 获得超7个赞
$ (something).bind ("input propertychange", function (e) { // check for paste as in example above and // do something})
- 3 回答
- 0 关注
- 347 浏览
添加回答
举报
0/150
提交
取消