如何在单个 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>
如何在单个 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>
使用 jQuery,您可以使用.load和.html函数将各个页面加载到内容 div
您可以使用 jQueryload()
方法:
$('#content').load('home.php');
您可以使用 iframe 作为“页面内容 div”
<iframe src="http://www.stackoverflow.com"></iframe>