Hello! It's a great pleasure to have you visit my blog.
It's truly a fateful encounter. If you are interested in Chinese goods, we can collaborate.
I can provide you with affordable Chinese products that you can sell in your country, thereby boosting our economic income.


If you are willing to cooperate, I hope to hear from you to discuss the opportunity for collaboration.
Here is my Email: t@29ym.com
Looking forward to connecting with you and embarking on this partnership together!

网站屏蔽审查工具F12和屏蔽右击右键

在写页面时,经常会有人用审查工具等来查看被人的页面代码,导致代码被复制,可以在自己网站页面中加一段js,可以有效防止审查工具和右击查看源代码

 //屏蔽f12
document.onkeydown = function(){

    if(window.event && window.event.keyCode == 123) {
        //alert("F12被禁用");
        event.keyCode=0;
        event.returnValue=false;
    }
    if(window.event && window.event.keyCode == 13) {
        window.event.keyCode = 505;
    }
    if(window.event && window.event.keyCode == 8) {
        alert(str+"\n请使用Del键进行字符的删除操作!");
        window.event.returnValue=false;
    }

}
//  屏蔽右键
    document.oncontextmenu = function (event){
  if(window.event){
  event = window.event;
  }try{
  var the = event.srcElement;
  if (!((the.tagName == "INPUT" && the.type.toLowerCase() == "text") || the.tagName == "TEXTAREA")){
  return false;
  }
  return true;
  }catch (e){
  return false;
  }
  }
发表新评论