0

我对 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();

有谁知道如何做这样的事情或有一个示例链接?

谢谢

4

1 回答 1

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/

于 2012-11-01T21:45:45.470 回答