0

Web ページで、Ajax 経由で読み込まれたコンテンツがいくつかあります。ユーザーがたまたま ajax コンテンツがロードされた実際のページにアクセスした場合、親ページ自体にリダイレクトされるようにします。私は次のJavaScriptで賢いと思っていました.

$url = top.location.href;

if($url.indexOf('/events/') <= 0){
    window.location = site_url + "events/?event=" + id;
}

これを行うより良い方法はありますか?これが PHP で可能であれば、これが望ましいでしょう。

ありがとう!

4

2 に答える 2

0

これを試してください:

events.php

<?php

if (empty($_SERVER['HTTP_X_REQUESTED_WITH']) || strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) != 'xmlhttprequest') {
    header("Location: index.html");
    exit;
}
echo "There are no events to display.";

?>

index.html

<!DOCTYPE html>
<html>
    <head>
        <title>Events</title>
        <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" ></script>
    </head>
    <body>
        <div class="test"></div>
        <script>
            $('.test').load('events.php');
        </script>
    </body>
</html>

別のアプローチは次のようになります。

events.php

<?php

if (!isset($_GET['a'])) {
    header("Location: index.html");
    exit;
}
echo "There are no events to display.";

?>

その後、 でリクエストできます$('.test').load('events.php?a');

あなたが何をしても、ユーザーはいつでもイベントを見ることができることに注意してください。

于 2013-05-24T06:16:58.883 に答える
0

これを試して:

$.ajax({
    type: "POST",
    url: reqUrl,
    data: reqBody,
    dataType: "json",
    success: function(data, textStatus) {
        if (data.redirect) {
            // data.redirect contains the string URL to redirect to
            window.location.href = data.redirect;
        }
        else {
             // data.form contains the HTML for the replacement form
            $("#myform").replaceWith(data.form);
        }
    }
}); 
于 2017-08-02T22:28:01.763 に答える