您当前的位置:首页 > 前端笔记 >

随机ip并模拟表头提交

发布时间:2018-11-28 13:43


//headers为post数据提交头部内容,用于随机ip
headers:{'x-forwarded-for':ip,'WL-Proxy-Client-IP':ip}
//ip随机代码
function createIp() {
  var a = Math.round(Math.random() * 250) + 1,
  b = Math.round(Math.random() * 250) + 1,
  c = Math.round(Math.random() * 240) + 1,
  d = Math.round(Math.random() * 240) + 1;
  return [a, b, c, d].join('.');
}