JPlayer issue in IE9

后端 未结 5 1708
离开以前
离开以前 2021-02-10 15:02

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:42

    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"
    }) 
    

提交回复
热议问题