Disable Right-Clicking In HTML5 Video?

前端 未结 5 1897
一个人的身影
一个人的身影 2020-12-16 02:41

I\'m using a HTML5 video player on my website and I want to disable right clicking on all my videos.

I tried using this code and it doesn\'t work:

&l         


        
5条回答
  •  难免孤独
    2020-12-16 03:08

    It works fine for me.

    $(document).bind("contextmenu",function(ev){
        if(ev.target.nodeName=='VIDEO')
        {
            return false;
        }
    });
    

提交回复
热议问题