最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題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關(guān)鍵字專題關(guān)鍵字專題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完美解決

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

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

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

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

下面介紹我的經(jīng)驗總結(jié),在前臺使用jquery替換掉原來的html5標簽,讓它變成使用傳統(tǒng)的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網(wǎng)提供,僅供參考,

不喜勿噴~~~

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

請勿轉(zhuǎn)載~~~~

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

文檔

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

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

最新推薦

猜你喜歡

熱門推薦

專題
Top