解决方法:转义。
假设str2是输入的字符串,转义<和>;
var str2='<span>hot</span>'; var str2=str2.replace(/</g,'<').replace(/>/g,'>');