0

以下代码在浏览器 chrome 中不可见,并且 IE9 似乎无法打开或不可见此代码和 4shared 上的播放列表生成

<iframe marginWidth=0 marginHeight=0 frameborder=0 border=0 cellspacing=0 src=http://www.4shared.com/pl/Dd1KpM8G/Need_For_Speed_-_The_Run.htmlscrolling=no width=320 height=260></iframe>

测试: http: //gamermag.com.br/index.php/screenshots-e-wallpapers/

4

1 回答 1

0

正如@dop-trois 所说,这些值应该用引号引起来。

<iframe marginWidth="0" marginHeight="0" frameborder="0" border="0" cellspacing="0" src="http://www.4shared.com/pl/Dd1KpM8G/Need_For_Speed_-_The_Run.html" scrolling="no" width="320" height="260"></iframe>

请记住,有些网站会阻止使用类似于下面的 JS 在 iF​​rame 中加载他们的页面,因此如果您尝试加载这样的网站(例如 Twitter),它不会显示任何内容或将您的整个页面重定向到他们的网站。请注意这一点。

if(top.frames.length > 0)
    top.location.href=self.location;
于 2012-06-12T18:06:34.007 回答