JPlayer issue in IE9

后端 未结 5 1788
广开言路
广开言路 2021-02-10 15:13

i think there is a problem in jquery.jplayer.min.js file which one i am using.

My jplayer is not working in only IE9.

its working in all other browser.

5条回答
  •  别那么骄傲
    2021-02-10 15:41

    I had the same issue. Resolved it by forcing IE9 to use Flash instead of html5.

    jPlayer({
        "solution": navigator.userAgent.indexOf("Trident/5")>-1 ? "flash" : "html,flash"
    }) 
    

提交回复
热议问题