ifreme 为什么执行的 结果 跳转 出来 而 不是在 1024*800的框架内
<script>
window.onload = function(){
if(top!=self) top.location.href = self.location.href;
}
</script>
<iframe src="http://www.xici.net/b2488/board.asp" width="1024" height="800"> </iframe>
为什么执行的 结果 跳转 出来 而 不是在 1024*800的框架内
------解决方案--------------------
iframe里不要写 <script>
window.onload = function(){
if(top!=self) top.location.href = self.location.href;
}
</script>