7
function sortPosts() {
var pSort = document.getElementById('pSort').selectedIndex;
var pstSort = document.getElementById('pSort').options;
var sorted = pstSort[pSort].value;
var hr = new XMLHttpRequest();
var url = "...";
var vars = "sort="+sorted;
hr.open("POST", url, true);
hr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
hr.onreadystatechange = function() {
    if (hr.readyState === 4 && hr.status === 200) {
        var return_data = hr.responseText;
        var cntnt = document.getElementById('content');
        while ((cntnt.lastChild !== '
         <select id="pSort">
          <option value="all" selected="true">All Posts</option>
          <option value="friends">Friends\' Posts</option>
          <option value="following">Following\'s Posts</option></select>' && cntnt.childNodes.length !== 1) || (cntnt.firstChild != '<select id="pSort"><option value="all" selected="true">All Posts</option><option value="friends">Friends\' Posts</option><option value="following">Following\'s Posts</option></select>' && cntnt.childNodes.length != 1)) {
            cntnt.removeChild(cntnt.lastChild);
        }
        document.getElementById('content').innerHTML += return_data;
        document.getElementById('content').style.opacity = '1.0';
    }
}
hr.send(vars);
document.getElementById('content').style.opacity = "0.5";

}

我需要删除 div#content 元素中的每个子元素,直到只保留 select 元素。我会说除了第一个子元素之外的每个子元素,但似乎在我无法控制的 div#content 元素内的 Chrome 中有一个不可见的文本节点。

或者,如果您有更好的方法在 ajax 加载新内容并删除旧内容时将选择元素保留在页面上,我很想听听。

4

2 回答 2

30

要删除除第一个孩子以外的所有孩子:

while (cntnt.childNodes.length > 1) {
    cntnt.removeChild(cntnt.lastChild);
}

您还可以按idselect要保存的

while (cntnt.lastChild.id !== 'pSort') {
    cntnt.removeChild(cntnt.lastChild);
}

或者您可以立即获取innerHTMLofpSort并将其附加到 ajax 响应中,而无需循环删除元素

cntnt.innerHTML = document.getElementById('pSort').innerHTML + return_data;
于 2013-11-10T03:15:32.360 回答
0

你可以这样做:

const firstElementChild = yearRangeToSelector.firstElementChild;
    selectElement.innerHTML = '';
    selectElement.append(firstElementChild);
于 2019-01-15T14:01:24.137 回答