How to check if the browser can play mp4 via html5 video tag?

后端 未结 5 959
名媛妹妹
名媛妹妹 2020-12-02 22:59

How to check if the browser can play mp4 via html5 video tag?

5条回答
  •  北海茫月
    2020-12-02 23:15

    I have to check if the html5 video is displayed, to hide my personal button to play and turn audio off in ie7 and ie8. My solution is shown below.

    My html:

    ...
    ...

    My JS ready:

    $(document).ready(function(){
        //controllo se il video funziona o si vede il video alternativo
        //  var numero = $('#sfondo_ridimensionato:hidden').length;
        //  alert(numero);
    
        if($('#sfondo_ridimensionato:hidden').length == 0){
            $('#controlli_video').hide();       
        }
    }
    

提交回复
热议问题