一秒钟加载一次,如果出现 就结束
window.onload = function () {
var interval = setInterval(function () {
var doc = document.querySelector(".title");
if (doc != null)
{
doc.appendChild(this.button);
clearInterval(interval);
}
},1000)
}
2023-11-14 17:34:34
一秒钟加载一次,如果出现 就结束
window.onload = function () {
var interval = setInterval(function () {
var doc = document.querySelector(".title");
if (doc != null)
{
doc.appendChild(this.button);
clearInterval(interval);
}
},1000)
}