禁止鼠标右键和禁止F12
$(function(){
$(document).ready(function(){
$(document).bind("contextmenu",function(e){
return false;
});
});
$(document).keydown(function(e) {
if (e.keyCode == 123) {
return false;
}
if ((e.ctrlKey) && (e.keyCode == 83)) { //ctrl+s
return false;
}
});
})
2 comments
兄弟,博客配色挺不错的。点个赞
哈哈哈 是挺色的哈