求去掉html标签的正则表达式
<p><b><font>这是想要的字符串</font></b></p>
var s = "<p><b><font>这是想要的字符串</font></b>< /p>";alert(s.replace(/<[^>]*>/g, ""));