使用 SWFObject 进行 Flash 检测
我不太明白 http://download.macromedia.com/pub/developer/alternative_content_examples.zip'> 这里下载的 SWFObject 示例。
为什么仅通过以下方式检查 Flash 插件的可用性 <|--[if !IE]> -->指示。 是不是说只有IE浏览器可以不预装flash播放器?当然不。那为什么 只检查IE?
I don't quite understand the SWFObject examples downloaded http://download.macromedia.com/pub/developer/alternative_content_examples.zip'>here.
Why the availability of the flash plugin is checked only by
<|--[if !IE]> --> instructions.
Does it mean that just IE can be without preintalled flash player? Of course no. Then why
just IE is checked?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不!该代码并不意味着它只检查 IE。
zip 中有两个示例,第一个是
第二个:
和
成对使用。它们就像
if (!isIE){ //... }
。这意味着 IE 将忽略该对内的代码(注意!
表示“不”)。它们实际上与 Flash 检测无关。Flash 检测(实际上是优雅降级)是通过使用以下特性来完成的:当插件不存在时,其对象/嵌入标记将被忽略,并且将显示这些标记内的 HTML。
如果 Flash 不存在,则对于第一个,
。对于第二个来说,就是
No! The code doesn't mean it only check IE.
There are two example in the zip, first one is
second one is:
<!--[if !IE]>-->
and<!--<![endif]-->
works as a pair. They are just likeif (!isIE){ //... }
. And what it means is IE will ignore the code inside the pair (pay attention to the!
which means "not"). They are actually not related to Flash detection.Flash detection(in fact it's graceful degradation) is done by using the characteristic that when the plug-in is not present, its object/embed tag will be ignored and the HTML inside those tags will be displayed.
If Flash is not present, for the first one,
<img src="banner.jpg" alt="Alternative content rules!" />
will be displayed. For the second, it's