//初始化加载
function fn(){
getlifeType();
var types = document.getElementById("fenlei3")
types.style.display = "none"
}
if (document.all) {
console.log(document.all)
window.attachEvent('onload', fn)
}
else {
window.addEventListener('load', fn, false);
}
js中在html中有onload事件和脚本中的onalod事件冲突解决
最新推荐文章于 2022-04-01 09:43:56 发布