摘要:
//只提取汉字 function GetChinese(strValue) { if(strValue!= null && strValue!= ""){ var reg = /[\u4e00-\u9fa5]/g; return strValue.match(reg).join(""); } else ... 阅读全文
摘要:
params = params.replace(/<\/?.+?>/g,"").replace(/ /g,""); 阅读全文