会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Maxkore博客(Blog)
在洛谷找到算法竞赛的一切!
首页
联系
订阅
管理
我的随笔
博客园美化地址
Maxkore 2025-07-30 08:49
阅读:17
评论:1
推荐:0
HTML学习地址
Maxkore 2025-07-30 08:40
阅读:11
评论:0
推荐:0
公告【站务】
Maxkore 2025-07-29 21:31
阅读:18
评论:0
推荐:0
数学小论文《1》
Maxkore 2025-07-29 20:52
阅读:23
评论:0
推荐:0
2、3、4、5、7、8、9、11、13、25、125的倍数的特征
Maxkore 2025-07-29 18:04
阅读:65
评论:0
推荐:0
公告
document.oncontextmenu = function(){ event.returnValue = false; } // 或者直接返回整个事件 document.oncontextmenu = function(){ return false; } document.onselectstart = function(){ event.returnValue = false; } // 或者直接返回整个事件 document.onselectstart = function(){ return false; } document.oncopy = function(){ event.returnValue = false; } // 或者直接返回整个事件 document.oncopy = function(){ return false; } document.onmousedown = function(e){ if ( e.which == 2 ){// 鼠标滚轮的按下,滚动不触发 return false; } if( e.which==3 ){// 鼠标右键 return false; } } document.onkeydown = function(){ if( event.ctrlKey ){ return false; } if ( event.altKey ){ return false; } if ( event.shiftKey ){ return false; } }