我有这样的代码,我需要删除由我无法控制的代码(由SharePoint生成)自动插入的​
个字符。它们通过插入额外的空行来破坏布局:
<div id="ctl00_PlaceHolderMain_ctl01__ControlWrapper_RichHtmlField" class="ms-rtestate-field" style="display:inline" aria-labelledby="ctl00_PlaceHolderMain_ctl01_label">
​​​
<span> ​
<div class="cg-division-intro-outer">
<div class="cg-division-intro-inner">
<div class="cg-division-intro-header">
<h1>Division Intro</h1>
</div>
... etc
请注意,​
实体作为裸文本插入,未包装到任何元素中,因此我无法直接将它们作为目标。
以下是我的尝试:
答案 0 :(得分:1)
JS
使用library(corrplot)
cors = cor(VADeaths)
corrplot(cors,tl.col="black",title="Example Plot",mar=c(0,0,5,0),tl.offset = 1)
并将其值更改为childNodes
nodeValue
HTML
var d = document.getElementById('div1').childNodes[0];
d.nodeValue = "new text"; // change value
// if you want to remove the element
d.parentElement.removeChild(d)