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";
}
}
浙公网安备 33010602011771号