我们正在尝试保护我们的视频数据不被下载。 在常规练习中,我试图禁用contextmenu / longclick / rightclick,但它没有帮助。 以下是示例代码
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<style>
video{
height : 100%;
width : 100%;
}
</style>
<body>
<video>
<source src="http://184.72.239.149/vod/smil:BigBuckBunny.smil/playlist.m3u8" type="video/mp4">
Your browser does not support HTML5 video.
</video>
</body>
<script>
$('video').bind('contextmenu', function(e) {
return false;
});
</script>
</html>