如何在单个div块上加载我的php页面? 我的index.php上的例子我有
<a>when i click this link it loads the home.php page on the div</a>
<a>when i click this link it loads the location.php page on the div</a>
<div id="content">
</div>
答案 0 :(得分:0)
使用jQuery,您可以使用 .load 和 .html 函数将各个页面加载到内容div中
答案 1 :(得分:0)
您可以使用jQuery load()
方法:
$('#content').load('home.php');
答案 2 :(得分:0)
您可以使用iframe作为“页面内容divs”
<iframe src="http://www.stackoverflow.com"></iframe>