javascirpt中加入
function target_dis(){
var target=document.getElementById("yourDivName")
target.style.display="none"
}
然后在连接或者 按钮中 加入onclick="target_dis()" 即可
然后点击“关闭”按钮 就可以了关掉了
在按钮上加一个onclick="Hide()点击事件。隐藏整个DIV
function Hide() {var a = document.getElementById("login")//login是ID
a.style.display = "none"
}
如有疑问请继续追问,望采纳!