我用简单的脚本在按钮单击时打开了表单
<script>
function showMsg(){
document.message.style.visibility="visible";
}
</script>
形式出现,一切正常。现在我添加了一个 x 以使此表单再次隐藏,我尝试了各种脚本但没有任何效果。也许我需要将 div 设置为隐藏而不是表单?有什么建议吗?这是我的代码
<div id="msg"><class="button" onclick="showMsg();">
<form style="visibility:hidden" name="message" method="post" action="contact.php">
<br><br>
<div id="demo">
<table width="230px" align="center" style="box-shadow: 0px 0px 30px 0px rgba(0, 0,
0, 100);">
<tr><td colspan=1></td></tr>
<tr>
<td><a href="#" class="close-classic"></a></td>
</tr>
</table>
</form>
</div>
</div>