国产99久久精品_欧美日本韩国一区二区_激情小说综合网_欧美一级二级视频_午夜av电影_日本久久精品视频

最新文章專題視頻專題問答1問答10問答100問答1000問答2000關鍵字專題1關鍵字專題50關鍵字專題500關鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關鍵字專題關鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當前位置: 首頁 - 科技 - 知識百科 - 正文

kindeditor編輯器上傳flv視頻播放兼容ie8完美解決

來源:懂視網 責編:小采 時間:2020-11-27 20:16:24
文檔

kindeditor編輯器上傳flv視頻播放兼容ie8完美解決

kindeditor編輯器上傳flv視頻播放兼容ie8完美解決:你是否遇到過在使用kindeditor編輯器,后臺傳視頻前臺無法播放的問題,那是瀏覽器無法兼容導致的。ie8不支持embed標簽,下面介紹我的經驗總結,在前臺使用jquery替換掉原來的html5標簽,讓它變成使用傳統的flash播放。代碼如下:ie兼容性----if(。
推薦度:
導讀kindeditor編輯器上傳flv視頻播放兼容ie8完美解決:你是否遇到過在使用kindeditor編輯器,后臺傳視頻前臺無法播放的問題,那是瀏覽器無法兼容導致的。ie8不支持embed標簽,下面介紹我的經驗總結,在前臺使用jquery替換掉原來的html5標簽,讓它變成使用傳統的flash播放。代碼如下:ie兼容性----if(。

你是否遇到過在使用kindeditor編輯器,后臺傳視頻前臺無法播放的問題,那是瀏覽器無法兼容導致的。ie8不支持embed標簽,

下面介紹我的經驗總結,在前臺使用jquery替換掉原來的html5標簽,讓它變成使用傳統的flash播放。

代碼如下:

ie兼容性----

if(!!window.ActiveXObject || "ActiveXObject" in window){//ie8兼容性
deconcept.SWFObject.prototype.write=function(_20){
if(this.getAttribute("useExpressInstall")){
var _21=new deconcept.PlayerVersion([6,0,65]);
if(this.installedVer.versionIsValid(_21) && !this.installedVer.versionIsValid(this.getAttribute("version"))){
this.setAttribute("doExpressInstall",true);
this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));
document.title=document.title.slice(0,47)+" - Flash Player Installation";
this.addVariable("MMdoctitle",document.title)
}
}
if(this.skipDetect||this.getAttribute("doExpressInstall") || this.installedVer.versionIsValid(this.getAttribute("version"))){
var n=(typeof _20=="string")?document.getElementById(_20):_20;
$(n).html(this.getSWFHTML());
return true
}else{
if(this.getAttribute("redirectUrl")!=""){
document.location.replace(this.getAttribute("redirectUrl"))
}
}
return false
};
}

主要代碼------

<script src="/statics/home/js/mv/js/swfobject.js"></script>
<script src="/statics/home/js/mv/js/ie8-patch.js"></script>
<script>
function createflv(vpath,id,w,h,autostart){
var s1 = new SWFObject("/statics/home/js/mv/flvplayer.swf","single",w,h,"7");
s1.addParam("allowfullscreen","true"); 
s1.addVariable("file","<{site_url('index/flvreader')}>?var=basepath/"+vpath);
s1.addVariable("image",""); 
s1.addVariable("width",w); 
s1.addVariable("height",h);
if(autostart==undefined || autostart=="undefined"){autostart="false";}
s1.addVariable("autostart",autostart); 
s1.write(id);
}
</script>
<script>
$("embed").each(function(){
 var vpath,id,w,h,autostart;
 vpath=$(this).attr('src');
 id='v'+vpath.replace(/\//g,'_').replace(/\\./g,'_')+Math.floor(Math.random()*999+1).toString();
 w=$(this).attr('width');
 h=$(this).attr('height');
 autostart=$(this).attr('autostart');
 $(this).after('<p id="'+id+'" align="center"><a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see this player.</p>');
 $(this).remove();
 createflv(vpath,id,w,h,autostart);
});
</script>

本文由Gxl網提供,僅供參考,

不喜勿噴~~~

原文地址:http://www.gxlcms.com/js-tutorial-374175.html

請勿轉載~~~~

聲明:本網頁內容旨在傳播知識,若有侵權等問題請及時與本網聯系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

kindeditor編輯器上傳flv視頻播放兼容ie8完美解決

kindeditor編輯器上傳flv視頻播放兼容ie8完美解決:你是否遇到過在使用kindeditor編輯器,后臺傳視頻前臺無法播放的問題,那是瀏覽器無法兼容導致的。ie8不支持embed標簽,下面介紹我的經驗總結,在前臺使用jquery替換掉原來的html5標簽,讓它變成使用傳統的flash播放。代碼如下:ie兼容性----if(。
推薦度:
標簽: IE 播放器 編輯器
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top
主站蜘蛛池模板: 国产精品久久一区一区 | 日韩一区二区久久久久久 | 久久久久亚洲 | 婷婷久久五月天 | 中文字幕第7页 | 性殴美 | 国产精品2020 | 一级毛片免费下载 | 国产精品成久久久久三级 | 国产精品高清视亚洲一区二区 | 在线国产一区二区三区 | 国产第一页在线播放 | 91在线 一区 二区三区 | 日本a级精品一区二区三区 日本不卡视频一区二区三区 | 亚洲一区二区三区高清 不卡 | 久久精品一区二区三区不卡牛牛 | 精品久久一区二区三区 | 亚洲一区二区三区高清 不卡 | xx欧美| 亚洲成a人一区二区三区 | 看全色黄大色大片免费久久久 | 高清国产一区二区三区 | 国产精品美女久久久久网站 | 国产成人一区二区三区在线播放 | 亚洲一区日韩二区欧美三区 | 欧美黄色第一页 | 亚洲欧美日韩精品永久在线 | 欧美一区2区 | 中文字幕日韩有码 | 亚洲 欧洲 另类 综合 自拍 | 成人亚洲国产精品久久 | 在线精品免费视频 | 久久2 | 欧美精品一区二区三区久久 | 欧美日韩中文在线 | 日韩精品一区二区三区视频 | 久久精品成人一区二区三区 | 老色99久久九九精品尤物 | 欧美第一页在线 | 国产欧美综合一区二区 | 久久夜色精品国产亚洲 |