表单在页面加载时未隐藏

Form not hidden on page load

本文关键字:隐藏 加载 表单      更新时间:2024-05-27

在我的网站上http://purewords.com/site16/如果你向下滚动到页面底部,你会看到应该隐藏的联系人表格。但是,如果您单击菜单中的"联系人",然后单击十字架关闭弹出框,则表单将不再显示在底部。如何使表单在页面加载时不可见?非常感谢,

使联系人表单的包装display:none

#inline {
    display: none;
}

此外,您的表单已损坏,有两个关闭的form标签:

    <button id="send">Send E-mail</button></form>
</form>