我有一个出色的“gotHtml”代码,可以在我的 php 页面中为我提供其他 php 页面的内容。但是当我想从“index.php”中调用这些“href”而不是“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;
});});