我是 jQuery、AJAX 和 php 的初学者。这是我想要实现的目标:
- 如果用户通过没有电子邮件表单的页面进入网站,则显示一个模式弹出窗口,要求他们使用电子邮件地址选择加入。
- 一旦用户点击提交,更改模态中的内容以显示感谢消息,然后自动关闭模态,允许用户与他们最初来到的页面进行交互。
- 将提交的信息发送到数据库
- 我不想在提交时将它们重定向到确认页面,但如果模式没有自动关闭而是只显示确认消息,那也可以。
我必须将 php 托管在与网站托管不同的服务器上,所以我认为存在跨域响应问题。我能够在 Firefox、Chrome、Safari 和 IE10 中成功提交表单(提交进入数据库),并且在我提交表单时在控制台中看不到任何错误消息。但是,数据不会从 IE8 传输。
我在网上做了一些研究,并阅读了有关使用 JSON、JSONP 和 XDR 的信息,但是 a) 我不清楚如何实现(现在我头顶上)并且 b) 似乎使用这些方法似乎会增加有人可以访问这些电子邮件地址提交。
我该怎么做才能在 IE8 中完成这项工作?任何指导将不胜感激。iFrame 是迄今为止我能找到的最接近的替代方案,但滚动条并没有消失,而且它们是不可接受的。
这是我的脚本(Web 服务器自动使用 jquery 1.3.2,我必须使用更新版本的模式,因此使用 noConflict。不是删除对 1.3.2 的引用的选项):
<script type="text/javascript">
var jQuery_1_7_2 = jQuery.noConflict(true);
function validateEmail(email) {
var reg = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
return reg.test(email);
}
jQuery_1_7_2(document).ready(function(){
var emailFormExists = jQuery_1_7_2('#e2ma_signup_form');
if (document.cookie.indexOf('visited=true') == -1 && !(emailFormExists.length)){
var fifteenDays = 1000*60*60*24*15;
var expires = new Date((new Date()).valueOf() + fifteenDays);
document.cookie = "visited=true;expires=" + expires.toUTCString();
jQuery_1_7_2.fancybox({width:"100%", inline:true, href:"#inline"});
}
else
{
jQuery_1_7_2('#e2ma_signup_form').length
var fifteenDays = 1000*60*60*24*15;
var expires = new Date((new Date()).valueOf() + fifteenDays);
document.cookie = "visited=true;expires=" + expires.toUTCString();
}
jQuery_1_7_2("#contact").submit(function() { return false; });
jQuery_1_7_2("#send").on("click", function(){
var emailval = jQuery_1_7_2("#email").val();
var mailvalid = validateEmail(emailval);
if(mailvalid == false) {
jQuery_1_7_2("#email").addClass("error");
}
else if(mailvalid == true){
jQuery_1_7_2("#email").removeClass("error");
}
if(mailvalid == true) {
// if both validate we attempt to send the e-mail
// first we hide the submit btn so the user doesnt click twice
jQuery_1_7_2("#contact").fadeOut("fast", function(){
jQuery_1_7_2(this).before("<p><strong>Thanks for opting in!</strong></p>");
setTimeout("jQuery_1_7_2.fancybox.close()", 1000);
});
jQuery_1_7_2.ajax({
type: 'POST',
url: 'http://domain.com/scripts/email-opt-in.php',
data: jQuery_1_7_2("#contact").serialize(),
success: function(data) {
if(data == "true") {
jQuery_1_7_2("#contact").fadeOut("fast", function(){
jQuery_1_7_2(this).before("<p><strong>Thanks for opting in!</strong></p>");
setTimeout("jQuery_1_7_2.fancybox.close()", 1000);
});
}
}
});
}
});
});
</script>
这是php:
<?php require_once('../Connections/Liz.php'); ?>
<?php
$insertSQL = "INSERT INTO optin (id, email) VALUES ('','".$_POST['email']."')";
mysql_select_db($database_Liz, $Liz);
$Result1 = mysql_query($insertSQL, $Liz) or die(mysql_error());
?>
这是我的html:
<div id="inline">
<h2>Join the mailing list!</h2>
<form id="contact" name="contact" action="#" method="post">
<label for="email">Your E-mail</label>
<input type="email" id="email" name="email" class="txt">
<button id="send">Submit</button>
</form>
</div>