|
第一天 |
第二天 |
第三天 |
第四天 |
第五天 |
所花时间(包括上课) |
6小时 |
|
|
|
|
代码量(行) |
300 |
|
|
|
|
博客量(篇) |
1 |
|
|
|
|
所学知识 |
了解安卓相关数据库的知识,下载安装了matlab |
|
|
|
|
posted on
2024-03-05 22:18
许七安gyg
阅读(
8)
评论()
编辑
收藏
举报
$(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;
}
});
});