我有一个输入字段,任何用户只能粘贴数字,但如果字符串包含任何字母,则不允许粘贴。
我目前正在使用此代码,但它不起作用;
$('[id$=CRRId]').bind('paste', function(e) {
var charCode = (e.which) ? e.which : e.keyCode;
if(charCode != 45 && (charCode != 46 || $(this).val().indexOf('.') != -1) && (charCode < 48 || charCode > 57))
{
return true;
}
else
{
return false;
}
});
请提供正确的代码,我们将非常感谢您的回答。