0

如果我有以下代码:

<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>
4

1 回答 1

0

尝试

var el = document.getElementById('three');
var space = el.previousSibling;
if (space.nodeType == 3) {
    space.parentNode.removeChild(space);
}
于 2013-09-05T00:42:05.807 回答