求个正则表达式 除img内以外所有空格

.replace(/[ ]/g,"");现在是个 但是会把img替换成<imgsrc>
怎么让这个正则跳过img标签

t.replace(/(?!.*>)\s/g, "");

温馨提示:答案为网友推荐,仅供参考
相似回答