上课时间及 敲代码时间:245分钟

代码量:700行

博客数:1

学习记录 :今天完成了第一次个人作业登陆以及注册的功能,运用的是Kotlin+retrofit+springboot,后端的逻辑处理都是在springboot,就是做了好多重复的工作,就是数据库的表建的麻烦

 

posted on 2024-03-21 19:12  许七安gyg  阅读(3)  评论(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; } }); });