-1

如何在单个 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>
4

3 回答 3

0

使用 jQuery,您可以使用.load.html函数将各个页面加载到内容 div

于 2013-02-13T16:05:19.323 回答
0

您可以使用 jQueryload()方法:

$('#content').load('home.php');
于 2013-02-13T16:05:24.560 回答
0

您可以使用 iframe 作为“页面内容 div”

<iframe src="http://www.stackoverflow.com"></iframe>
于 2013-02-13T16:08:31.273 回答