您需要提交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条)