3 つの異なるページから呼び出される関数があります。各ページで、1 つの div に attr を追加しています。
例えば:
<div id="posts" page="home"></div>
<div id="posts" page="feed"></div>
<div id="posts" page="search"></div>
if
Java Script で page の値を取得し、それを PHP ファイルに渡しelseif
ますelse
。
より安全にするために、スクリプトが呼び出された URL を取得するために AJAX がロードする PHP ファイルで良いと思いました。
<?php
if($page =='home' && $sourceUrl == 'the home url' )
{
// do this
}
elseif($page =='feed' && $sourceUrl == 'the feed url')
{
// do this
}
elseif($page =='search' && $sourceUrl == 'the search url')
{
// do this
}
else
{
exit();
}
?>