日期:2014-05-17 浏览次数:20568 次
/** * 去除html标记和空格 */ function replaceHtmlTag(str){ var v_str=str.replace(/<[^>]*>/g,""); return v_str.replace(/\s/g,""); }