2010-07-06 42 views
0

即時嘗試修復閃光重疊使用正則表達式。這裏是試圖轉換到我的需要排序閃光重疊問題wmode ='不透明'

<object width="440" height="300" data= 
    "http://www.youtube.com/v/dMH0bHeiRNg&amp;color1=0xb1b1b1&amp;color2=0xd0d0d0&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1" 
    type="application/x-shockwave-flash"> 
    <param name="allowScriptAccess" value="never" /> 
    <param name="allowNetworking" value="internal" /> 
    <param name="wmode" value="window" /> 
    <param name="movie" value= 
    "http://www.youtube.com/v/dMH0bHeiRNg&amp;color1=0xb1b1b1&amp;color2=0xd0d0d0&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1" /> 
    <!--[if IE]><embed width="440" height="300" src="http://www.youtube.com/v/dMH0bHeiRNg&amp;color1=0xb1b1b1&amp;color2=0xd0d0d0&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1" allowScriptAccess="never" allowNetworking="internal" wmode="window"><![endif]--> 
    </object> 

我想用regluar表達式功能 1)檢查的<param name="wmode" .....存在,如果它存在......它有力地設置值「不透明」標記IM的一個例子。如果不存在,則將其添加到上面的代碼中。

我需要這個功能通過調用這個函數$(document).ready函數中(如下圖),解決了保存在數據庫中

+0

爲什麼要使用正則表達式來做到這一點?使用DOM解析器會更清晰和更好。 (儘管IE的條件註釋可能會被PHP內置的DOM解析器破壞)。 – 2010-07-06 22:12:46

+0

用戶輸入的嵌入代碼使用html淨化器進行解析和清理。解析後的代碼是xhtml的投訴,並從XSS安全。我想要純淨的HTML被迫有這個參數,如果它存在與否。你有一個DOM解決方案,從來沒有使用DOM解析器,讓我讀它 – 2010-07-06 22:19:07

+0

我認爲這個CUD也可以用DOM解析器完成,任何一個解決方案? – 2010-07-06 22:28:36

回答

1

我發現,解決它在所有瀏覽器純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();  
} 
1

我固定它「HTML」代碼閃存重疊的問題。

window.fix_wmode2transparent_swf = function () { 
    // For embed 
    jQuery("embed").each(function(i) { 
     var elClone = this.cloneNode(true); 
     elClone.setAttribute("WMode", "Transparent"); 
     jQuery(this).before(elClone); 
     jQuery(this).remove(); 
    });  
    // For object and/or embed into objects 
    jQuery("object").each(function (i, v) { 
    var elEmbed = jQuery(this).children("embed"); 
    if(typeof (elEmbed.get(0)) != "undefined") { 
     if(typeof (elEmbed.get(0).outerHTML) != "undefined") { 
      elEmbed.attr("wmode", "transparent"); 
      jQuery(this.outerHTML).insertAfter(this); 
      jQuery(this).remove(); 
     } 
     return true; 
    } 
    var algo = this.attributes; 
    var str_tag = '<OBJECT '; 
    for (var i=0; i < algo.length; i++) str_tag += algo[i].name + '="' + algo[i].value + '" ';  
    str_tag += '>'; 
    var flag = false; 
    jQuery(this).children().each(function (elem) { 
     if(this.nodeName == "PARAM") { 
      if (this.name == "wmode") { 
       flag=true; 
       str_tag += '<PARAM NAME="' + this.name + '" VALUE="transparent">';   
      } 
      else str_tag += '<PARAM NAME="' + this.name + '" VALUE="' + this.value + '">'; 
     } 
    }); 
    if(!flag) 
     str_tag += '<PARAM NAME="wmode" VALUE="transparent">';   
    str_tag += '</OBJECT>'; 
    jQuery(str_tag).insertAfter(this); 
    jQuery(this).remove();  
    }); 
} 

http://www.nobilesoft.com/Scripts/fix_wmode2transparent_swf.js

1

有一個在你的代碼錯誤。隨着修復,它運作良好。代碼將爲

$(document).ready(function() { 
      fix_flash();  
});