在 swfobject 中嵌入 swf 时遇到问题
我正在按照此处的步骤操作:
http://code.google.com/p/swfobject /wiki/documentation
我是这样嵌入的:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>SWFObject dynamic embed - step 3</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css" media="screen">
html, body, #myContent { height:100%; }
body { margin:0; padding:0; overflow:hidden; }
</style>
<script type="text/javascript" src="js/swfobject/swfobject.js"></script>
<script type="text/javascript">
swfobject.embedSWF("flash/main.swf?sessionId=psjqbunbdoapfqt1cskggvsdi2", "myContent", "100%", "100%", "9.0.0", "js/swfobject/expressInstall.swf");
</script>
</head>
<body>
<table style="width:100%;height:100%;">
<tr>
<td style="width:350px">
<div id="myContent">
<p>Alternative content</p>
</div>
<noscript>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
id="main" width="100%" height="100%"
codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab">
<param name="movie" value="flash/main.swf?sessionId=psjqbunbdoapfqt1cskggvsdi2" />
<param name="quality" value="high" />
<param name="bgcolor" value="#eeeeee" />
<param name="allowScriptAccess" value="sameDomain" />
<embed src="flash/main.swf?sessionId=psjqbunbdoapfqt1cskggvsdi2" quality="high" bgcolor="#eeeeee"
width="100%" height="100%" name="main" align="middle"
play="true"
loop="false"
quality="high"
allowScriptAccess="sameDomain"
type="application/x-shockwave-flash"
pluginspage="http://www.adobe.com/go/getflashplayer">
</embed>
</object>
</noscript>
</td>
</tr>
</table>
</body>
</html>
结果发现flash内容根本不可见,为什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的
隐私政策
了解更多相关信息。 单击
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文
发布评论
评论(1)
去掉所有额外的东西,比如
、
、CSS 等。只需保留 swfobject 和
如果根本不显示:您的 swf 有问题,或者 swfobject 未正确加载。
如果确实显示:开始添加内容。首先重新输入样式属性。重新加载。继续直到你的内容消失=>你知道你的问题出在哪里!
另外:我建议不要在其中添加额外的
- 这就是“替代内容”的含义。您确实应该在其中放置一些替代内容,例如图片或文本,并链接到 Flash 插件下载页面。
Get rid of all the additional stuff, like the
<table>
,<noscript>
, CSS etc. Just leave swfobject and the<div>
(no style attributes, either!) in an otherwise empty HTML construct.If it doesn't show at all: There is something wrong with your swf, or swfobject doesn't load correctly.
If it does show: Start adding stuff. First re-enter the style attributes. Reload. Go on until your content disappears => you know where your problem is!
Also: I would advise not to put an additional
<noscript>
in there - that's what "alternative content" is meant for. You should really put something alternative in there, like a picture or text, and link to the flash plugin download page.绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!