以下代码使用 SWFObject 将 Flash 动画嵌入到 HTML 文档中,仅显示替代内容。为什么?
<!DOCTYPE html>
<html>
<head>
<title>Adding a Flash Movie</title>
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js">
</script>
<script type="text/javascript">
swfobject.embedSWF("flash/bird.swf", "bird", "400", "300", "8.0.0");
</script>
</head>
<body>
<div id="bird">
<p>An animation of a bird taking a shower</p>
</div>
</body>
</html>
Chrome、IE 和 Firefox 都只显示An animation of a bird taking a shower
.
该代码是HTML 和 CSS:设计和构建网站一书中的示例。