今天都在摆,没有学习新的东西,算法真的劝退,只能做一下pta报告,听说今天晚上凌晨要地震,根本不怕,小震不用跑,况且我们这不是地震常发

posted on 2023-08-12 20:18  许七安gyg  阅读(2)  评论(0编辑  收藏  举报
$(document).ready(function() { // 禁止右键 $(document).bind("contextmenu", function(){return false;}); // 禁止选择 $(document).bind("selectstart", function(){return false;}); // 禁止Ctrl+C 和Ctrl+A $(document).keydown(function(event) { if ((event.ctrlKey&&event.which==67) || (event.ctrlKey&&event.which==86)) { //alert("对不起,版权所有,禁止复制"); return false; } }); });