js动态清除上拉列表框中的所有内容

js动态清除下拉列表框中的所有内容js动态清除下拉列表框中的所有内容// 清除列表框function clearFirst()

js动态清除下拉列表框中的所有内容

js动态清除下拉列表框中的所有内容

// 清除列表框function clearFirst() {var id = document.getElementById("firstcity");while (id.childNodes.length > 0) {id.removeChild(id.childNodes[0]);}}
?