2021/11/1 js 点击事件 登录

window.onload=function(){
var btn =document.querySelector("button");
// document.querySelectorAll() 找全部
// 配合 遍历使用 找到所以button
// document.querySelector()找一个

btn.onclick=function(){
var box=document.querySelector(".box");
box.style.display="flex";
}
var close =document.querySelector(".close");
close.onclick=function(){
var box =document.querySelector(".box");
box.style.display="none";
}

}

posted on 2021-11-01 14:54  闲鱼仔  阅读(49)  评论(0)    收藏  举报