摘要: //只提取汉字 function GetChinese(strValue) { if(strValue!= null && strValue!= ""){ var reg = /[\u4e00-\u9fa5]/g; return strValue.match(reg).join(""); } else ... 阅读全文
posted @ 2019-11-28 17:39 岁月淡忘了谁 阅读(10304) 评论(0) 推荐(0) 编辑
摘要: params = params.replace(/<\/?.+?>/g,"").replace(/ /g,""); 阅读全文
posted @ 2019-11-28 17:38 岁月淡忘了谁 阅读(2271) 评论(0) 推荐(0) 编辑