摘要:
阅读全文
摘要:
// 原型链 // 1.原型 -> 类 // 2.原型对象 -> 类中属性与方法组成的一个对象 // 3.实例对象 -> 创建的实例 // 4.如何互相转换 // 原型(它是一个函数) function User(){ } console.log("原型:",User); User.prototyp 阅读全文
摘要:
let a = document.createElement('img'); a.src = '/_xxxxxx=1&e=0.5609369440726193' 在浏览器中,当创建一个图片元素并设置src属性时,浏览器会根据该路径发送一个HTTP请求,请求该路径对应的资源文件。这个资源文件可以是一张 阅读全文
摘要:
RegExp = function RegExp(str){ this.flag = false; debugger; if(str== `\\w+ *\\(\\) *{\\w+ *['|"].+['|"];? *}`){ this.flag =true; } }; RegExp.prototype 阅读全文
摘要:
req = requests.Request('GET', "https://xxxx.gif", headers=headers) # 清空 cookies req.cookies = {} # 发送请求 session.send(req.prepare(), timeout=30, verify 阅读全文
摘要:
npm install http-server -g http-server 阅读全文
摘要:
阅读全文
摘要:
# coding=utf-8 """ @project: icnet @Author:angdh @file: demo.py @date:2023-07-22 10:58 """ import concurrent.futures import requests def task(url): # 阅读全文
摘要:
( function() { return !![];}.constructor('debugger').call('angdh') ) (function aa(){}.constructor('debugger')())(function (){}.constructor('debugger') 阅读全文