我在一个名为Scirra的网站上托管的游戏中有一个iframe链接。我拿了嵌入代码,它位于我页面的底部。奇怪而烦人的是,一旦打开页面,页面就会加载并直接向下射到iframe所在的div。任何人都知道如何解决这个问题?
<iframe src="http://static1.scirra.net/arcade/games/4778/play" width="700" height="460" style="width:700px;height:460px;border:0;margin:0;padding:0;" frameborder="0" scrolling="no" title="Captain Galactica and the SpiderCats" ></iframe>
答案 0 :(得分:1)
在窗口加载时添加window.scrollTo(0, 0);
。
或将onload = 'window.scrollTo(0, 0)'
添加到您的正文标记。
答案 1 :(得分:0)
尝试
<body onload="window.location.hash = '#divname';">
其中#divname
应该是您网页第一个元素的ID