如何为每个 Flash 对象添加 wmode="transparent" 并嵌入标签?

Posted

技术标签:

【中文标题】如何为每个 Flash 对象添加 wmode="transparent" 并嵌入标签?【英文标题】:How to add wmode="transparent" for every flash object & ebmed tag? 【发布时间】:2011-02-11 20:48:01 【问题描述】:

我有一个显示来自 issuu.com 的动态 Flash 内容的页面。我需要添加wmode="transparent",否则导航菜单会显示在闪光灯下。有没有用 jQuery 或简单的 java-script 来做这件事的捷径?

我不想每次添加 Flash 时都更改嵌入代码。

【问题讨论】:

【参考方案1】:

好的, 在网上搜索了 2 天后,我找到了一个纯 JS 函数,可以在所有浏览器中修复它!

你去吧:

function fix_flash() 
    // loop through every embed tag on the site
    var embeds = document.getElementsByTagName('embed');
    for (i = 0; i < embeds.length; i++) 
        embed = embeds[i];
        var new_embed;
        // everything but Firefox & Konqueror
        if (embed.outerhtml) 
            var html = embed.outerHTML;
            // replace an existing wmode parameter
            if (html.match(/wmode\s*=\s*('|")[a-zA-Z]+('|")/i))
                new_embed = html.replace(/wmode\s*=\s*('|")window('|")/i, "wmode='transparent'");
            // add a new wmode parameter
            else
                new_embed = html.replace(/<embed\s/i, "<embed wmode='transparent' ");
            // replace the old embed object with the fixed version
            embed.insertAdjacentHTML('beforeBegin', new_embed);
            embed.parentNode.removeChild(embed);
         else 
            // cloneNode is buggy in some versions of Safari & Opera, but works fine in FF
            new_embed = embed.cloneNode(true);
            if (!new_embed.getAttribute('wmode') || new_embed.getAttribute('wmode').toLowerCase() == 'window')
                new_embed.setAttribute('wmode', 'transparent');
            embed.parentNode.replaceChild(new_embed, embed);
        
    
    // loop through every object tag on the site
    var objects = document.getElementsByTagName('object');
    for (i = 0; i < objects.length; i++) 
        object = objects[i];
        var new_object;
        // object is an IE specific tag so we can use outerHTML here
        if (object.outerHTML) 
            var html = object.outerHTML;
            // replace an existing wmode parameter
            if (html.match(/<param\s+name\s*=\s*('|")wmode('|")\s+value\s*=\s*('|")[a-zA-Z]+('|")\s*\/?\>/i))
                new_object = html.replace(/<param\s+name\s*=\s*('|")wmode('|")\s+value\s*=\s*('|")window('|")\s*\/?\>/i, "<param name='wmode' value='transparent' />");
            // add a new wmode parameter
            else
                new_object = html.replace(/<\/object\>/i, "<param name='wmode' value='transparent' />\n</object>");
            // loop through each of the param tags
            var children = object.childNodes;
            for (j = 0; j < children.length; j++) 
                try 
                    if (children[j] != null) 
                        var theName = children[j].getAttribute('name');
                        if (theName != null && theName.match(/flashvars/i)) 
                            new_object = new_object.replace(/<param\s+name\s*=\s*('|")flashvars('|")\s+value\s*=\s*('|")[^'"]*('|")\s*\/?\>/i, "<param name='flashvars' value='" + children[j].getAttribute('value') + "' />");
                        
                    
                
                catch (err) 
                
            
            // replace the old embed object with the fixed versiony
            object.insertAdjacentHTML('beforeBegin', new_object);
            object.parentNode.removeChild(object);
        
    

现在你可以在页面加载时运行 jQuery:

 $(document).ready(function () 
      fix_flash();
      // Call Function
 ); 

【讨论】:

我无法让选择的答案起作用,但这对我来说非常有效。谢谢! 请注意,这个解决方案会在 IE 上隐藏 Flash 对象 IE8/IE7有没有办法让flash不消失?【参考方案2】:

这是我能找到的最简单且与浏览器兼容的解决方案,以便在页面已呈现后删除 wMode="window" 对象。

在 Internet Explorer 中,对象的子节点一旦插入 DOM 就无法修改。最好的解决办法是通过修改outerHTML重新插入/重新渲染。

在大多数其他浏览器中,修改对象/嵌入的属性是可能的,但一旦渲染就没有效果。在这里,在相同位置重新插入元素会导致重新渲染。 .wrap().unwrap() 是我在 jQuery 中想到的最简单的方法。

$("embed[wmode=window], embed:not([wmode])").attr("wmode", "opaque").wrap("<div/>").unwrap();
$("object:has(param[name=wmode][value=window]), object:not(:has(> param[name=wmode]))").each(object);

function object() 
  this.outerHTML = this.outerHTML.replace(/<(?:[^">]+|(["']).*?\1)*>/, '$&<param name="wmode" value="opaque"/>');

【讨论】:

这是最好的答案。顺便说一句,您应该将全局标志添加到您的正则表达式中,因为如果有更多 param 定义 wmode 的标签,您只需修改第一个标签,浏览器只会解释最后一个标签(在 youtube 页面上有这个问题)。 【参考方案3】:

我无法让 Mannaz 版本工作,并且想要一个更简洁的 jQuery 函数,将元素重新写入页面,所以写了一个新函数:

    function fixFlash() 
        $('object').each(function()
            $(this).find('embed').attr('wmode','transparent');
            if($(this).find('param[name=wmode]').attr('value') != 'transparent') 
                $(this).prepend('<param name="wmode" value="transparent" />');
            
            temp_var = $(this).parent().html();
            $(this).parent().html(temp_var);
        );
    
    // Put function execute into onload area
    fixFlash();

【讨论】:

【参考方案4】:

从 *** 的另一篇文章中,使用 JQuery 可以工作

$("embed").attr("wmode", "opaque").wrap('<div>');

I use this when using a FCKeditor youtube plugin, as the plugin doesn't wrap the embed node with a object node.

  $('embed').each(function()
    if($(this).parent()[0]['tagName'] !='OBJECT')
      $(this).attr("wmode", "opaque").wrap('<div>');
    
  );

【讨论】:

【参考方案5】:

我上次检查时,通过 JS 更改 wmode 不起作用。 Flash 对象创建后,更改其 wmode 值没有实际效果。

您需要从后端执行此操作,或者如果不可能,则在 JS BUT 中执行此操作,然后再写入对象。

HTH

【讨论】:

【参考方案6】:

你可以使用这个 Jquery 代码:

$("object[type='application/x-shockwave-flash']").append('<param name="wMode" value="transparent"/>');

【讨论】:

以上是关于如何为每个 Flash 对象添加 wmode="transparent" 并嵌入标签?的主要内容,如果未能解决你的问题,请参考以下文章

将任意 Flash 对象 wmode 更改为透明

firefox flash wmode 直接 z-index 透明背景

如何为javascript数组中的每个对象动态添加属性

flash wmode参数详解

调用 facebook 对话框后 Flash (wmode=window) 消失

WMODE 和 Flash 视频 - 稳定性和性能