0

我用简单的脚本在按钮单击时打开了表单

<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>
4

1 回答 1

0

这是您尝试执行的非常简单的准系统代码:

http://codepen.io/anon/pen/LJIre

您应该首先按照其他用户的建议清理和修复您的代码,然后从那里构建。

于 2013-10-03T10:45:38.847 回答