这可能与jquery或PHP?

时间:2014-03-19 08:19:03

标签: php jquery

目前我已经做到了这个

http://exige-media.com/api/

但我想要的是如果您发布表单this page已加载。

但是当您点击排名第3个标签时,它应该显示排名数据

因此,如果tab = ranking显示数据与主索引上的表单输入的数据

我已经尝试了几项检查PHP_SELF但我到目前为止尚未找到解决问题的方法希望你们能帮助我

问候

编辑所以我有一个php页面,如果$ page = home,如果$ page =排名我想要的是,如果在这种情况下tab 3被点击,排名我想要返回if if page ==排名下的数据来自提交的表格

2 个答案:

答案 0 :(得分:2)

获得成功的表单后,您需要使用

进行PHP重定向

header('Location: http://exige-media.com/api/index3.php');

要激活第3个标签,请插入此js

$(function() { $( "#tabs" ).tabs( "option", "active", 2 ); });

+1用LOL做什么

答案 1 :(得分:0)

或者你可以使用AJAX来获取这些数据:

$('#tabs a[href="#ranked"]').click(function(){
    $.ajax({
        url: "script_with_ranks.php",
        type: "post",
        data: optional_values,
        success: function(){
            alert("success");
            $("#tabs-3").html('Submitted successfully');
        },
        error:function(){
            alert("failure");
            $("#tabs-3").html('There is error while submit');
        }
    });
});

其中#tab-3是最后一个标签内容。