有时候难免需要使用js进行 dom 操作;如在删除地图feature时同时得清除提示框
这个就需要使用 .parentNode.removeChild(元素)
let chArr = document.body.getElementsByClassName("tooltip-static");
for(i=0;i<chArr.length;i++){
//删除元素 元素.parentNode.removeChild(元素);
if (chArr[i] != null)
chArr[i].parentNode.removeChild(chArr[i]);
}