如何从呈现 html 的共享点中删除特殊字符和代码(使用 jquery)?

How to remove special characters and codes (using jquery) from sharepoint rendered html?

我正在开发共享点应用程序的品牌。在某些情况下,呈现的 html 包含类似 ' ' 的代码。在我的滑块中,这些生成了 8 次,在模式页面和内容页面中,它们的计数不同。这些代码正在生成不需要的白色 space。如何使用 jQuery 删除这些?我试着玩这个

$(".wrapper").filter(function(){
  return $.trim(this.innerHTML) === "​";
}).remove();

但是它不起作用。

检查下面的代码,它有点 DOM-intensive 但它确实有效。

$('#s4-bodyContainer').html($('#s4-bodyContainer').html().replace(/\u200B/g,''));

如果它不起作用,请告诉我。