jquery媒体与swfobject冲突

发布于 2024-08-23 16:24:42 字数 214 浏览 5 评论 0原文

如果我将 jquery 媒体插件与 swfobject 2.2 一起使用,我会在 IE 中收到“未知运行时错误”。

在FF等浏览器中运行良好。

如果我删除 swfobject.js 那么媒体工作正常,因为它使用简单的对象/嵌入标签加载。

但我也需要使用 swfobject (用于其他事情)。

有人遇到过这个问题或者解决了吗?

一个。

If I use jquery media plugin WITH swfobject 2.2 I get an 'unknown runtime error' in IE.

It works fine in FF and other browsers.

If i remove swfobject.js then the media works fine as it loads using simple object/embed tags.

But I need to use swfobject as well (for other things).

Has anybody come across this or a fix?

A.

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

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

发布评论

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

评论(2

三寸金莲 2024-08-30 16:24:42

尝试为视频元素设置 id 属性。

<a class="media" href="video.flv" id="specimen_video">Specimen Video</a>

我有类似的问题,它对我有帮助。

Try to set id attribute to the element with your video.

<a class="media" href="video.flv" id="specimen_video">Specimen Video</a>

I had similar problem and it helps me.

熟人话多 2024-08-30 16:24:42

尝试使用 jQuery 没有冲突。

jQuery.noConflict();
// Do something with jQuery
jQuery("div p").hide();
// Do something with another library's $()
$("content").style.display = 'none';

Try using jQuery no conflict.

jQuery.noConflict();
// Do something with jQuery
jQuery("div p").hide();
// Do something with another library's $()
$("content").style.display = 'none';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文