php的借用其他网站的页面覆盖Logo的技巧,
<body> <div id="red_f"></div>
<div class="layout" style="width: 320px">
<div class="houserent">
<div id="logo58">
<img src="__IMG__/logo58.jpg" alt="" />
</div>
<iframe id="page58" src="{$urlsy}" frameborder="0">
</iframe>
</div>
</div>
<script type="text/javascript" src="__JS__/jquery-1.7.2.js"></script>
<script type="text/javascript">
$(function(){
window.onload = function (){
var hh = $(window).height();
$('.houserent').find('iframe').css({
'width': 320 + 'px',
'height': hh +'px'
});
}
});
</script>
</body>
可以看到我们是利用一个LOGO将原网站的LOGO进行覆盖,本来有一种想法是通过页面的js控制页面还是不行。因为别人网站是在一个分帧内,根据浏览器的显示协议,一个分帧相当于一个页面在外面的js是无法控制的,所以js是无法进入
<iframe id="page58" src="{$urlsy}" frameborder="0">
</iframe>里面去控制的,就是说滚动条都是别人的网站,所以无法检测。