`

<OBJECT> 和<EMBED>标签的区别

阅读更多
<html>
   <head>
      <title>My First FusionCharts</title>
   </head>
   <body bgcolor="#ffffff">
      <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="900" height="300" id="Column3D" >
         <param name="movie" value="../FusionCharts/Column3D.swf" />
         <param name="FlashVars" value="&dataURL=Data.xml">
         <param name="quality" value="high" />
         <embed src="../FusionCharts/Column3D.swf" flashVars="&dataURL=Data.xml" quality="high" width="900" height="300" name="Column3D" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
      </object>

</body>
</html>
Save this file as Chart.html under MyFirstChart folder.

The code in bold above is the actual code that you need to place in your page to embed a FusionCharts chart.

In the above code, we've

  • used <OBJECT> and <EMBED> tags to embed the 3D Column Chart (Column3D.swf) within the HTML page.
  • used &dataUrl=Data.xml under FlashVars parameter to indicate the source of data to chart – Data.xml in this case. This method of indicating data is referred to as dataURL method of providing data.
  • specified chart width as 900 and chart height as 300.
 

To display a Flash movie correctly in a browser, HTML page should contain specific tags that specify the Flash movie file to be opened and played. There are two tags which are intended for it: <OBJECT> and <EMBED> tags.

These two tags are required to display a Flash movie in different Internet browsers properly. The <OBJECT> tag is used by Internet Explorer under Microsoft Windows and the <EMBED> tag is used by Netscape Navigator under Microsoft Windows or Mac OS. Each of these two tags acts in the same way, however using only one tag may cause incompatibility of one of the browsers. To ensure that most browsers will play your Flash movies, you should place the <EMBED> tag nested within the <OBJECT> tag as shown in the example. ActiveX-enabled browsers will ignore the <EMBED> tag inside the <OBJECT> tag. Netscape and old Microsoft browsers will not recognize the <OBJECT> tag and will use only the <EMBED> tag to load the Macromedia Flash Player.

<OBJECT> 标签支持IE,<EMBED>标签支持旧版本的IE和其他的浏览器加载flash播放器。。。。

分享到:
评论

相关推荐

    object 标签使用

    这里的`classid`和`codebase`属性用于识别Flash插件,`movie`属性指向SWF文件,`embed`标签是备用的,用于那些不支持`&lt;object&gt;`标签的浏览器。 五、嵌入Java Applets `&lt;object&gt;`标签也可以用来插入Java Applets: `...

    Html 标签embed 动态显示

    同时,为了兼容不同的浏览器和设备,开发者还需要考虑使用如`&lt;object&gt;`标签作为备选方案,以及使用响应式设计来适应不同屏幕尺寸。此外,优化加载速度和用户体验也是使用这些标签时必须考虑的因素,比如通过延迟加载...

    html使用embed 播放flv 视频

    为了向后兼容,可以结合使用`&lt;object&gt;`和`&lt;embed&gt;`标签,如下所示: ```html &lt;object data="flashplayer.swf" width="640" height="480"&gt; &lt;param name="movie" value="flashplayer.swf" /&gt; &lt;param name="quality...

    flex嵌入html的容器

    对于不支持`&lt;object&gt;`标签的浏览器,我们还可以使用`&lt;embed&gt;`标签。`&lt;embed&gt;`标签的使用方式类似,只是属性略有不同: ```html &lt;embed src="path/to/your/IFrameDemo.swf" width="100%" height="100%" type=...

    Web页中插入flash动画代码

    在给定的代码片段中,主要涉及到了`&lt;object&gt;`标签和嵌套在其内部的`&lt;param&gt;`与`&lt;embed&gt;`标签。下面将详细介绍这些标签的使用方法和作用。 ##### 1. `&lt;object&gt;`标签 - **基本用法**:`&lt;object&gt;`标签用于定义内联...

    wmv视频代码.txt )

    总结来说,这段代码展示了如何使用 `&lt;object&gt;` 和 `&lt;embed&gt;` 标签在网页上嵌入 WMV 视频文件。虽然这种方法在过去很常见,但现在更推荐使用 HTML5 的 `&lt;video&gt;` 标签,因为它提供了更好的跨平台兼容性和安全性。

    在网页加入flash代码

    首先,Flash内容通常通过两种方式在网页中显示:SWF文件和HTML5的`&lt;object&gt;`或`&lt;embed&gt;`标签。SWF是Adobe Flash Player识别的文件格式,用于播放Flash动画和交互内容。在HTML4时代,我们通常使用`&lt;object&gt;`和`&lt;embed...

    网页中嵌入视频代码综合完全版.pdf

    总结起来,网页中嵌入视频的代码通常涉及`&lt;object&gt;`和`&lt;param&gt;`标签,以及可能的`&lt;embed&gt;`标签,这些标签的使用取决于目标浏览器的兼容性和所选择的视频播放技术。在HTML5时代,`&lt;video&gt;`标签成为了推荐的方法,因为...

    html多媒体

    首先,HTML中处理多媒体的主要标签是`&lt;object&gt;`和`&lt;embed&gt;`。`&lt;embed&gt;`元素在HTML5中被正式标准化,它用于定义外部内容的容器,如音频、视频等。`&lt;embed&gt;`标签具有几个关键属性: 1. `width`和`height`:定义嵌入...

    HTML标签英文单词

    `&lt;param&gt;` 标签用于定义 `&lt;object&gt;` 或 `&lt;embed&gt;` 元素的参数。它可以用来传递配置信息给嵌入的对象。 ### &lt;pre&gt;: Preformatted Text `&lt;pre&gt;` 标签用于定义预格式化文本。它保留了文本原有的空格和换行,适用于...

    HTML标签整理.docx

    64. `&lt;param&gt;`:设置`&lt;applet&gt;`、`&lt;embed&gt;`或`&lt;object&gt;`的初始参数值。 这些HTML标签构成了网页的基本结构和样式,通过它们可以创建出丰富的交互式网页内容。在实际开发中,还需要结合CSS(Cascading Style Sheets...

    HTML 5和 HTML 4的区别点及标签用法

    - **HTML 4**: 使用`&lt;object&gt;`标签,但HTML 5中的`&lt;embed&gt;`提供了更简洁的语法。 #### 9. `&lt;figcaption&gt;`和`&lt;figure&gt;`标签 - **HTML 5**: `&lt;figure&gt;`和`&lt;figcaption&gt;`分别用于组合相关元素并为其添加标题。`...

    HTML元素参考手册

    64. `&lt;param&gt;`:为`&lt;object&gt;`或`&lt;embed&gt;`设置参数。 65. `&lt;pre&gt;`:以固定宽度字体显示预格式化的文本。 66. `&lt;q&gt;`:表示短引号。 67. `&lt;s&gt;`:显示删除线文本,HTML5中推荐使用`&lt;del&gt;`。 68. `&lt;samp&gt;`:表示代码...

    入门级HTML教程-HTML元素

    `&lt;param&gt;`为`&lt;applet&gt;`、`&lt;embed&gt;`或`&lt;object&gt;`设置参数初始值。`&lt;pre&gt;`保留空白符,用于显示固定宽度的文本。`&lt;q&gt;`用于短引语。`&lt;s&gt;`显示带删除线的文本。`&lt;samp&gt;`表示代码样本。`&lt;script&gt;`引入脚本,如JavaScript...

    两种方法实现ASP.NET中flash的插入

    直接创建一个`&lt;embed&gt;`标签,并设置相应的属性,例如`src`用于指定Flash文件的位置,`width`和`height`设置尺寸大小等。 ```html &lt;embed src="fitfla.swf" width="540" height="220" quality="high" pluginspage...

    几种在网页中播放FLV视频文件的代码.pdf

    此方法使用JavaScript动态创建`&lt;object&gt;`和`&lt;embed&gt;`标签来插入FLV视频播放器。以下为关键代码解释: 1. 定义变量: - `swf_width`和`swf_height`分别代表视频播放器的宽度和高度。 - `texts`是视频的标题。 - `...

    html5标签大全

    * `&lt;object&gt;`:定义内嵌对象 * `&lt;param&gt;`:定义对象的参数 * `&lt;audio&gt;`:定义声音内容 * `&lt;video&gt;`:定义视频内容 * `&lt;source&gt;`:定义媒介源 * `&lt;track&gt;`:定义视频或音频轨道 表单标签 * `&lt;form&gt;`:定义供用户...

    HTML教程:收集的常用的HTML标签(4)

    7. `&lt;PARAM&gt;` 标签:为`&lt;APPLET&gt;`、`&lt;EMBED&gt;`和`&lt;OBJECT&gt;`等对象元素提供参数。例如,可以设置参数名(`NAME`)和值(`VALUE`),以便对象能够正确运行或显示。 8. `&lt;PLAINTEXT&gt;` 标签:在HTML中,这表示接下来的...

    一个简单的网页,嵌入了flash

    在HTML中嵌入Flash,可以使用`&lt;object&gt;`或`&lt;embed&gt;`标签。然而,需要注意的是,由于Flash的性能和安全性问题,以及现代浏览器对HTML5技术的支持,Flash已经逐渐被淘汰。以下是一个使用`&lt;object&gt;`标签嵌入Flash的示例...

Global site tag (gtag.js) - Google Analytics