Comment: The html5 video tag itself has a download function, but in the video area, right-click to save "Video As" is the js code to block the right-click video as. Friends who have this need should not miss it
To make HTML5 video tags, we have the download function, but in the video area, right-click to save the video asTo download the video, in order to block the video and save as, you can add the following code to js:
$('#myVideo').bind('contextmenu',function() { return false; });
where myVideo is the id of the video tag, so that the right-click function of the video tag area can be blocked.
But it cannot be truly blocked (you know...).