我正在尝试通过 a 用空白替换特殊字符
$('#replacedInput').keyup(function() {
var $th = $(this);
$th.val($th.val().replace(/[^a-zA-Z0-9]/g, function(str) {
return ''; }
) );
});
这适用于除三星 S3 手机之外的所有浏览器。
请帮忙
提前致谢
我正在尝试通过 a 用空白替换特殊字符
$('#replacedInput').keyup(function() {
var $th = $(this);
$th.val($th.val().replace(/[^a-zA-Z0-9]/g, function(str) {
return ''; }
) );
});
这适用于除三星 S3 手机之外的所有浏览器。
请帮忙
提前致谢