var flashElements = document.getElementsByTagName(“EMBED”); 的最佳替代品

发布于 2024-07-14 04:37:18 字数 230 浏览 10 评论 0原文

我想在随机页面上找到所有 Flash 对象(使它们 wmode=透明,这样它们就不会隐藏菜单)。

IE 不支持 EMBED: document.getElementsByTagName("EMBED");

知道什么是最有效地找到所有嵌入(没有 jQuery...)

另外对于更高级的:我遇到了嵌入标记被编写为 eMBED 的网站。 我还需要找到这些类型的标签。

谢谢

I want to find all flash objects on a random page (to make them wmode=transparent so they wont hide a menu).

IE does not support EMBED in: document.getElementsByTagName("EMBED");

Any idea what is the most efficent to find all embeds (no jQuery...)

Also for the more advanced: I came across sites where the embed tag was written as eMBED. I need to find these kind of tags also.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

娇妻 2024-07-21 04:37:18

我认为问题不在于 IE 不支持上的搜索。 标签,而不是在 IE 中使用 。 标签包含 flash 元素。 事实上,Firefox 也支持后一种格式,如果您使用以下形式:

<object type="application/x-shockwave-flash" data="MyFlashProgram.swf">

事实上,这是首选语法,并且 swfobject 也使用这个。 因此,对于跨浏览器解决方案,您需要查找:

  • 和<对象> type 属性设置为“application/x-shockwave-flash”的元素
  • classid 属性设置为“clsid:D27CDB6E-AE6D-11cf-96B8-444553540000”的元素

我不确定 Opera 或 Safari 等其他浏览器,您可能需要使用更多变体来扩展此列表。

使用 jQuery 或原型等 javascript 库查找这些元素应该是微不足道的,但您可以在没有这些的情况下进行管理。

I think the problem is not that IE does not support a search on <embed> tags but rather that in IE one uses <object> tags to include a flash element. As a matter of fact, Firefox also supports the latter format, if you use the following form:

<object type="application/x-shockwave-flash" data="MyFlashProgram.swf">

In fact, this is the preferred syntax, and swfobject uses this as well. So, for a cross-browser solution, you'd need to look for:

  • <embed> and <object> elements with type attribute set to "application/x-shockwave-flash"
  • <object> elements with classid attribute set to "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"

Im unsure about other browsers like Opera or Safari, it is possible that you need to extend this list with further variants.

Finding these elements should be trivial with a javascript library like jQuery or prototype, but you can manage without those.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文