开发者

Which browsers support the <embed> and <object> tags?

I am working on a department website that needs to be standards compliant (xhtml 1.0 transitional), but embedded flash keeps breaking the validation. We use the <embed> tag because we need to support most major browsers.

We can't use external tools, since the site is managed through a system and the admins don't like us putting extra tools (like JavaScript libraries etc) that could interfere with their template engine.

How widely supported is the obje开发者_如何学JAVAct tag? Is it safe to use only the <object> tag and remove the <embed> tag all together?


<embed> is invalid in XHTML 1.0 and HTML 4, but it’s valid in HTML5, so you could switch to the HTML5 doctype and be compliant with that standard instead.

As mentioned above, the Flash Satay article at A List Apart is a great explanation of how to get Flash working with just an <object> tag. It’s not so much which browsers support <object> (I think only Netscape 4 doesn’t), it’s more that the differences in how the browsers support Flash embedded with <object> screw everything up.

Definitely read the article. It’s got code you can use and everything. In short, <object> on its own works fine, unless you want a Flash movie to start playing before it’s fully downloaded. Then you need another Flash movie to act as a wrapper.


It's best if you use http://code.google.com/p/swfobject/ which deals with browser compatibility issues.

Google suggests using swfobject as well.


This validator: http://validifier.com/ does a pretty good job, and I've had decent results with it. (Edit note: site is now "adult" & presumably NSFW.)

There's also this article: http://www.alistapart.com/articles/flashsatay/ on how to embed without an embed tag, but I believe it involves using a container movie, which isn't much fun but does get the job done.


The <embed> tag is not a valid tag. The <object> tag is. Cherouvim is correct in that swfobject will take care of all of that for you. I highly recommend it.


The <object> tag helps for the browser who use ActiveX controls to display properly the flash movie and it is mainly used for IE . With newest IE 7 and 8 the flash movie works without the <object> tag and <embed> tag is for Netscape and related to it browsers using Netscape plugin to display a flash movie.

So it better to use both to be safe that your flash movie will have a good chance to be played on all the browser

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜