2017-07-25 180 views
1

我嵌入式JWPlayer我的網頁上,但有時視頻斜面加載Jwplayer錯誤加載介質,有人能幫助我如何使重定向到新的URL如果jwplayer斜面加載文件重定向到URL,如果

這是我的代碼:

<script type='text/javascript'> 
    jwplayer('player').setup({ 
     file: 'http://blog.com/stream.m3u8', 
     image: 'http://blog.com/streamimage.png', 
     title: 'STREAMING TITLE', 
     width: '100%', 
     height: "100%", 
     aspectratio: '16:9', 
     skin: 'glow', 
     mute: 'true', 
     ga: '{}' 
    }); 
</script> 

這個代碼變更源的視頻,但我需要使它重定向到新的URL用頭位置

jwplayer().onError(function(){ jwplayer().load({file:"http://jwplayer.com/errorfile.mp4", 
image:"http://blog.com/streamimage-error.png"}); // 
     }); 

這樣的:

<?php header("Location: http://www.example.com/"); ?> /* Redirect browser */ 

請幫我

回答

1

要使用JavaScript重定向,您可以使用:

window.location.href = 'http://wherever';