2

我想知道是否有办法在单击链接后显示外部 php 文件,然后在单击不同链接后在其下方显示另一个外部文件(而不是 INSTEAD)。这是我的代码。

索引.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 

<html>  
<head>
<script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-   1.2.6.pack.js"></script>  
<script type="text/javascript" src="core.js"></script>   
</head>  
<body>   
<div id="menu">  
<ul>  
<li id="home"><a href="#downloads">DOWNLOADS</a></li>  
<li id="tutorials"><a href="#errors">ERRORS</a></li>  
</ul>   
</div>  
<div id="content">    
</div>  
</body>  
</html>  

核心.js

//On load page, init the timer which check if the there are anchor changes each 300 ms
$().ready(function(){
setInterval("checkAnchor()", 100);
});
var currentAnchor = null;
//Function which chek if there are anchor changes, if there are, sends the ajax    petition
function checkAnchor(){
//Check if it has changes
if(currentAnchor != document.location.hash){
    currentAnchor = document.location.hash;
    //if there is not anchor, the loads the default section
    if(!currentAnchor)
        query = "page=1";
    else
    {
        //Creates the  string callback. This converts the url URL/#main&id=2 in URL/?section=main&id=2
        var splits = currentAnchor.substring(1).split('&');
        //Get the section
        var page = splits[0];
        delete splits[0];
        //Create the params string
        var params = splits.join('&');
        var query = "page=" + page + params;
    }
    //Send the petition
    $("#loading").show();
    $.get("callbacks.php",query, function(data){
        $("#content").html(data);
        $("#loading").hide();
    });
}
}

下载.php

<b>DOWNLOADS</b>

错误.php

<b>ERRORS</b>

回调.php

<?php  
//used to simulate more waiting for load the content, remove on yor projects!  
sleep(1);  
//Captures the petition and load the suitable section  
switch($_GET['page']){  
case "errors": include 'errors.php'; break;
case "downloads": include 'downloads.php'; break;

default: include 'downloads.php'; break;

}  
?>

这工作得很好,除了它使用一个开关,我希望能够同时看到errors.php和downloads.php,而不仅仅是一个或另一个。

编辑

伪代码使其更清晰:

如果单击下载,则仅显示 download.php。如果单击错误,则仅显示 error.php(就在 downloads.php 之后),并且不要删除 downloads.php 或任何其他可能已包含在主页上或未包含在主页上的外部文件。

有什么建议么?

ps我已经浏览了很多很多关于这个的线程,这就是为什么我不能发布我尝试过的所有代码(抱歉我也不能包含链接,上次我的问题因为这样做而被否决...> :/) 所以我可以保证我已经完成了我的作业。

pss 如果您认为这值得一票否决,请善意解释原因。我愿意接受批评,但只是不赞成根本没有帮助。

编辑:

将 core.js更新为

$(document).ready(function(){
$('#menu li a').click(function() {
    var currentAnchor = $(this).attr('href');
    if(!currentAnchor)
        var query = "page=1";
    else
    {
        var splits = currentAnchor.substring(1).split('&');
        //Get the section
        var page = splits[0];
        delete splits[0];
        //Create the params string
        var params = splits.join('&');
        var query = "page=" + page + params;
    }
    //Send the petition
    $("#loading").show();
    $.get("callbacks.php",query, function(data){
        $("#content").html(data);
        $("#loading").hide();
    });       
    return false;
});
});
4

2 回答 2

0

如果你想同时显示两个页面,在你的 callbacks.php 页面中你应该能够做这样的事情(我所做的只是删除 switch 语句):

include 'errors.php';
include 'downloads.php';

你有什么理由不能这样做?

于 2012-06-20T18:19:35.367 回答
0

编辑:

[此处删除了令人困惑的部分]

--

编辑:

core.js(修订版)

//On load page, init the timer which check if the there are anchor changes each 300 ms
$(document).ready(function(){
    $('#menu li a').click(function() {
        var currentAnchor = $(this).attr('href');
        if(!currentAnchor)
            var query = "page=1";
        else
        {
            var splits = currentAnchor.substring(1).split('&');
            //Get the section
            var page = splits[0];
            delete splits[0];
            //Create the params string
            var params = splits.join('&');
            var query = "page=" + page + params;
        }
        //Send the petition
        $("#loading").show();
        $.get("callbacks.php",query, function(data){
            $("#content").html(data);
            $("#loading").hide();
        });       
        return false;
    });
}​​​);​​​

--

编辑:

这个将“附加”数据[来自下载错误]到现有内容。

        $.get("callbacks.php",query, function(data){
            $("#content").append(data);
            $("#loading").hide();
        }); 

希望这可以帮助。

于 2012-06-20T18:37:55.217 回答