禁止文本框复制跟粘贴'
禁止文本框复制和粘贴'
$("input[type=text].assetSerial").bind('copy paste',function(e){
e.preventDefault();
alert('禁止复制和粘贴');
});