我有从另一个站点获取数据的 jquery:
获取.php
<div>
displays a list of things
</div>
主页.php
$.ajax({
type:"GET",
url:"get.php",
data:"fakedata=fakedata"
}).done(function(data){
$(".container").html(data);
});
因此它会显示类容器内的 get.php 中的任何内容。
但是,如果我想在 get.php 中添加一些内容
<div>
<div style="position:absolute;top:0;left:-50;">
a box
</div>
displays a list of things
</div>
如果我试图在容器左侧显示一个框,那么它将被切断,就好像它是一个 iframe 一样。即使我将 z-index 添加到它也不起作用。
有人知道我在说什么吗?
谢谢