Strange symbol shows up on website (L SEP)?

前端 未结 4 2023
醉酒成梦
醉酒成梦 2020-12-29 01:25

I noticed on my website, http://www.cscc.org.sg/, there\'s this odd symbol that shows up.

It says L SEP. In the HTML Code, it display the same thing.

<
4条回答
  •  滥情空心
    2020-12-29 01:38

    This is the solution for the 'strange symbol' issue.

    $(document).ready(function () {
      $("body").children().each(function() {
          document.body.innerHTML = document.body.innerHTML.replace(/\u2028/g, ' ');
      });
    })
    

提交回复
热议问题