使用 JavaScript 对 Flash 内容强制使用 wmode

发布于 2024-08-23 14:51:42 字数 129 浏览 9 评论 0原文

我在客户网站上使用模式窗口,我们无法访问其中的内容。问题是他的页面上有一些闪光,并且这些闪光的 wmode 没有设置为透明。

是否有可能从我们的 JavaScript 中强制他们的 Flash 添加此参数?

谢谢

I'm using a modal window on a client's site where we have no access to the content. The problem is that he has some flash on the page and the wmode for these is not set to transparent.

Is there a possibility to force their flash from our javascript to have this parameter added?

Thanks

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

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

发布评论

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

评论(1

玩世 2024-08-30 14:51:43

使用 JavaScript:

  • 找到一些 DIV 或其他可访问的容器来保存 Flash 对象。
  • 将innerHTML作为字符串获取
  • 使用REPLACE更改/插入字符串中的wmode设置
  • 将字符串重新插入文档

顺便说一句:wmode =“transparent”是处理器密集型的。除非 Flash 影片中有实际透明部分需要显示出来,否则请使用“不透明”。

Using JavaScript:

  • Find some DIV or other accessible container that holds the flash object.
  • grab the innerHTML as a string
  • Use a REPLACE to change/insert your wmode setting in the string
  • Reinsert the string into the document

BTW: wmode="transparent" is processor-intensive. Unless there are actual transparent portions of the flash movie that need to show-through, use "opaque" instead.

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