私のphpページに他のphpページのコンテンツを表示する優れた「gotHtml」コードがあります。しかし、これらの「href」を「index.php」から呼び出したい場合、正常に動作する「service.php」ではなく、ページとコンテンツを読み込めません。アイデアはありますか?
/here is the php part
<p id="serv-tabs">
<a href="#serv/acse">Accounting Services</a><br/>
<a href="#serv/compA">Company Administration</a><br/>
........
........</p>
<div id="serv-content">
.....
</div>
/here is the script
$(document).ready(function() {
$("#serv-tabs a").click(function() {
var page= this.hash.substr(1);
$.get(page+".php",function(gotHtml) {
$("#serv-content").html(gotHtml);
});
return false;
});});