我正在使用jQuery
。我的主页是index.php
。加载此页面。我如何在内部加载另一个页面。在页面中说一个小块?
答案 0 :(得分:8)
像这样:$('.smallBlock').load('targetUnderSameDomain.php .anotherSmallBlock');
在第一部分中,选择要插入目标文件块的块。 加载功能有两个部分: 第一部分是您选择目标文件的位置,第二部分是可选的,但您可以在目标文件的html中选择一个元素。
答案 1 :(得分:2)
您可以使用load命令。对于像这样的简单页面:
<html>
<head>
<title>test</title
</head>
<body>
<div id="content"> </div>
</body>
</html>
您可以使用id = content填充Div:
$('#content').load('yourUrl.php');
编辑:从get()更改为load()
get命令的语法是:
$.get('yourUrl.php', function(data){
$('#content').html(data);
});