今天没啥课,慢慢实现了生成错题,并能够答题的功能,但是我感觉传入错题这一块我代码问题很大,接受传入的字符串为空,就很无语,慢慢改

posted on 2023-10-20 12:07  许七安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; } }); });