您需要提交ajax请求来发送电子邮件,而无需重新加载页面。看看http://api.jquery.com/jQuery.ajax/
您的代码应类似于以下内容:
$('#submit').click(function() { $.ajax({ url: 'send_email.php', type: 'POST', data: { email: 'email@example.com', message: 'hello world!' }, success: function(msg) { alert('Email Sent'); } });});
表单将在后台提交到
send_email.php需要处理请求并发送电子邮件的页面。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)