本「Head first Ajax」のサンプルコードで遊んでいます。コードの重要な部分は次のとおりです。
Index.php - HTML ピース:
<body>
<div id="wrapper">
<div id="thumbnailPane">
<img src="images/itemGuitar.jpg" width="301" height="105" alt="guitar"
title="itemGuitar" id="itemGuitar" onclick="getDetails(this)"/>
<img src="images/itemShades.jpg" alt="sunglasses" width="301" height="88"
title="itemShades" id="itemShades" onclick="getDetails(this)" />
<img src="images/itemCowbell.jpg" alt="cowbell" width="301" height="126"
title="itemCowbell" id="itemCowbell" onclick="getDetails(this)" />
<img src="images/itemHat.jpg" alt="hat" width="300" height="152"
title="itemHat" id="itemHat" onclick="getDetails(this)" />
</div>
<div id="detailsPane">
<img src="images/blank-detail.jpg" width="346" height="153" id="itemDetail" />
<div id="description"></div>
</div>
</div>
</body>
Index.php - スクリプト:
function getDetails(img){
var title = img.title;
request = createRequest();
if (request == null) {
alert("Unable to create request");
return;
}
var url= "getDetails.php?ImageID=" + escape(title);
request.open("GET", url, true);
request.onreadystatechange = displayDetails;
request.send(null);
}
function displayDetails() {
if (request.readyState == 4) {
if (request.status == 200) {
detailDiv = document.getElementById("description");
detailDiv.innerHTML = request.responseText;
}else{
return;
}
}else{
return;
}
request.send(null);
}
そして Index.php:
<?php
$details = array (
'itemGuitar' => "<p>Pete Townshend once played this guitar while his own axe was in the shop having bits of drumkit removed from it.</p>",
'itemShades' => "<p>Yoko Ono's sunglasses. While perhaps not valued much by Beatles fans, this pair is rumored to have been licked by John Lennon.</p>",
'itemCowbell' => "<p>Remember the famous \"more cowbell\" skit from Saturday Night Live? Well, this is the actual cowbell.</p>",
'itemHat' => "<p>Michael Jackson's hat, as worn in the \"Billie Jean\" video. Not really rock memorabilia, but it smells better than Slash's tophat.</p>"
);
if (isset($_REQUEST['ImageID'])){echo $details[$_REQUEST['ImageID']];}
?>
このコードが行うことは、誰かがサムネイルをクリックすると、対応するテキストの説明がページに表示されることだけです。
これが私の質問です。getDetails.php
コードを の中に入れて、関数Index.php
を変更して
. これを行うと、次の問題が発生します。関数は、配列内のテキストのスニペットを表示する必要がありますが、表示しません。代わりに、コード全体 (Web ページなど) を再現し、最後に予想されるテキストのスニペットを再現します。getDetails
var url
"Index.php?ImageID="...
何故ですか?
PS: OK、以下の 2 つの回答のおかげで、問題を理解できました。url を呼び出すとき"Index.php?ImageID="...
、に対応する部分をロードするだけではありません$_GET
。現在、null 以外の値でページ全体を読み込んでい$_GET
ます。これにより、追加したいもののためだけに別のページが必要な理由が明確になります。