js 去除html 空格标记
/** * 去除html标记和空格 */function replaceHtmlTag(str){var v_str=str.replace(/<[^>]*>/g,"");return v_str.replace(/\s/g,"");}