//去除html标签:function del_html_tags(str) { var words = ''; words = str.replace(/<[^>]+>/g, ""); return words;}最后的那个g有什么特殊的意义么 查看完整描述