gpt4 book ai didi

javascript - 使用css javascript关闭图层div的简单按钮

转载 作者:行者123 更新时间:2023-11-28 03:27:08 24 4
gpt4 key购买 nike

我就是找不到这个问题的答案。

我的网页中有一个 div,在不同的层之上。我只是想在这个 div 中有一个按钮或标签来隐藏它。我试过:

<html>
<head>
<script language="javascript">
myFunction()
{
document.getElementById("corporate_background").setAttribute("style", "display:none;");
}
</script>
</head>
<body>
<p>aajhahaksha</p>
<div id="corporate_background">
<a href="javascript:myFunction()">Close</a>
<P>content...</P>
</div>
</body>

谁能告诉我我哪里做错了。

最佳答案

这样做:

<html>
<head>
<script language="javascript">
function myFunction()
{
document.getElementById("corporate_background").setAttribute("style", "display:none;");
}
</script>
</head>
<body>
<p>aajhahaksha</p>
<div id="corporate_background">
<a href="javascript:myFunction()">Close</a>
<P>content...</P>
</div>
</body>

这只是因为您没有将 myFunction() 定义为函数。

下次,用 F12 打开你的调试器,看看它在说什么......!

关于javascript - 使用css javascript关闭图层div的简单按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20548719/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com