我目前正在为我的网站使用以下教程:
http://www.roscripts.com/AJAX_contact_form-144.html
我在代码中更改了几个变量,即我的表单和PHP文件中的相应变量。
这就是我的表格:
<form id="contactus" action="send.php" method="get" name="contactus">
<div class="box">
<span style="text-indent: 20px;"><h2>Contact Us!</h2><br /></span>
<div id="log">
<div id="log_res">
</div>
</div>
<label>
<span>Name:</span>
<input type="text" class="input_text" name="name" id="name" />
</label>
<label>
<span>Email:</span>
<input type="text" class="input_text" name="e_mail" id="e_mail"/>
</label>
<label>
<span>Subject:</span>
<input type="text" class="input_text" name="subject" id="subject"/>
</label>
<label>
<span style="padding: 5px 10px 0 0;">Message:</span>
<textarea class="message" name="feedback" id="feedback"></textarea>
</label>
<input type="submit" class="button" value="Send!" />
</div>
</form>
我的脚本:http://pastebin.com/iNR1TXBk(为空间粘贴)
我的 send.php :http://pastebin.com/Wv7GsMVC(为空间粘贴)
当我填写字段并单击提交时,<div id="log_res">
更改为<div id="log_res" class="ajax-loading"></div>
,告诉我Ajax正在运行,但在Iron的开发控制台中,我收到HTTP错误500。我的PHP或Javascript中是否有错误?