在一个div中加载不同的php页面

时间:2013-02-13 16:03:24

标签: javascript html

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

3 个答案:

答案 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>