1.CSS选择器:
div p:nth-child(even),div :not(p)
2.document.getElementById("name").insertAdjacentHTML("afterEnd","<span>张三</span>");
document.getElementById("name").remove()
1.找h1 :document.find("div").find("h1") p偶数:document.find("div").find("p")[1]
2.document.find("div").append("<span>张三</span>"),把其追加到div里面。
document.find("div").children("span").remove().移除