我对PHP有基本的了解,过去总是在外部php / html文件中加载我的“谢谢你提交/成功消息”信息。
目前我正在使用Zurb.Foundation构建一个网站,并想知道如何在我已经在页面上使用的模态中加载成功消息?
它目前尚未激活,但这是一个引用的示例(单击“提交”以查看模态): http://www.josephsjoblom.com/clients/nhcw/contact.html
这是我通常在我的php文件中完成的,当表格中的一切都很好时:
/* Redirect visitor to the thank you page */
header('Location: ../thanks.html');
exit();
我可以使用这样的东西吗?:
header('Location: #link_to_an_ID_example');
exit();
有谁知道如何做这样的事情或有一个示例链接?
由于
答案 0 :(得分:0)
以下是一个可以根据您的目的进行调整的示例:
$(document).ready(function() {
$("a.quickLyric").click(function(){
// capture the url to load from the id
var urlLoad = $(this).attr("id");
// load the second template with AJAX
$("div[class="+urlLoad+"]").toggle();
$("div[class="+urlLoad+"]").load('/songs/inc/'+urlLoad+'/');
// just make sure the page doesn’t reload
return false;
});
});
来源:http://expressionengine.com/archived_forums/viewthread/113886/