F12解决网页不能复制

博客类小程序源码,快速开通流量主,代码地址
程序猿,经常东拼西凑,COPY下代码,一个功能就好了,但经常碰到网页内容不能复制的,一个F12就可解决

F12,执行后就可正常复制

var allowPaste = function(e){
  e.stopImmediatePropagation();
  return true;
};
document.addEventListener('copy', allowPaste, true);
document.addEventListener('paste', allowPaste, true);

url参数正则切分提取

//控制台测试,编码URL参数
'name=&&&&&b=&&&c=&&b=2'.replace(/(&{0})(&*)(&{1})/g, function($0, $1, $2, $3){return $1+(Array.apply(null, {length:$2.length+1}).join('%26'))+$3;});

function splitUrl(url){
  url = url.replace(/(&{0})(&*)(&{1})/g, function($0, $1, $2, $3){return $1+(Array.apply(null, {length:$2.length+1}).join('%26'))+$3;});
  if(url.endsWith("&")){
    url = url.substring(0,url.length-1)+"%26"
  }
  return url.split("&");
}

CSS固定屏幕中间

.toast {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate3d(-50%,-50%,0);
}

原生JS发送HTTP

经常碰到需要临时测试接口,不想打开PostMan,直接F12执行即可

let url= "http://192.168.4.160/file/api/v2/download?fileId=5c2fbada-25ef-4fe1-b828-1a11de48ed91.pdf";
let xhr = new XMLHttpRequest();
xhr.open('get', url, true);
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); // 设置请求头,必须在open后添加
xhr.setRequestHeader('authorization','');
xhr.responseType = 'blob'; // 返回类型blob  blob 存储着大量的二进制数据
xhr.onload = function () {
  if (this.status === 200) {
    let blob = this.response;
    let reader = new FileReader();
    reader.readAsDataURL(blob); // 转换为base64,可以直接放入a标签href
    reader.onload = function (e) {
      let a = document.createElement('a'); // 转换完成,创建一个a标签用于下载
      a.download = name + '.png';
      console.log(e)
      a.href = e.target.result;
      a.click();
    };
  }
}
xhr.send(); // 发送ajax请求

正统资讯,小程序,资源分享社区,
F12解决网页不能复制_第1张图片

你可能感兴趣的:(编程,js,javascript)