我正在尝试在我的网站上制作联系表格。这是代码:
<form id="form" method="post" action="send.php">
<fieldset>
<label><input type="text" value="Email" onBlur="if(this.value=='') this.value='Email'" onFocus="if(this.value =='Email' ) this.value=''"></label>
<label><input type="text" value="App URL" onBlur="if(this.value=='') this.value='App URL'" onFocus="if(this.value =='App URL' ) this.value=''"></label>
<div class="btns"><a href="javascript:" class="button" onClick="document.getElementById('form').submit()">Send</a></div>
</fieldset>
</form>
问题是页面 send.php 在 $_POST 中没有任何内容!
有没有人知道如何解决它?谢谢!