标签:style color ar sp on html ef size htm
var reg2 = /^[\u4E00-\u9FA5\uf900-\ufa2d\w\.\s]+$/;//不能输入特殊字符
}
var s = "abcdefgbb";
s = s.replace("b", "n"); //将b替换成n,只能替换一次
s = s.replace(/\b/g, "n");
// 将所有的b替换成n
标签:style color ar sp on html ef size htm
原文地址:http://blog.csdn.net/xiwu1616/article/details/40582909