如果我有以下代码:
<div id="one">1</div> <div id="two">2</div> <div id="three">3</div>
我有办法在div“三”之前删除空格吗?所以我最终得到了这个:
<div id="one">1</div> <div id="two">2</div><div id="three">3</div>
答案 0 :(得分:0)
尝试
var el = document.getElementById('three');
var space = el.previousSibling;
if (space.nodeType == 3) {
space.parentNode.removeChild(space);
}