Remove every white space between tags using JavaScript

前端 未结 5 1590
你的背包
你的背包 2020-12-30 06:57

I\'m trying to remove white space between tags so that childNodes only contain those tags nodes not the white space nodes too. Here\'s my code :

  • 5条回答
    •  执念已碎
      2020-12-30 07:27

      Can you treat a html tag as a string in js? I guess it can be done. try this!

      s.replace(/\s+/g, ' ');
      

    提交回复
    热议问题