摘要:
书签标题:选中全角色文本 书签: javascript:if (!document.querySelector('#js')) {const js = document.createElement('script'); js.id = 'js';js.src = 'https://tavp.tech 阅读全文
摘要:
目录结构 action.ai #PVF_File [ai pattern] [think] [void] `is target in attack area()` 150.0 150.0 100.0 100.0 [true] [think] [void] `check random()` 30 10 阅读全文
摘要:
函数 function convertToHexArrays(input) { // 通过制表符分割输入字符串 const numbers = input.split('\t'); // 用于存储结果的数组 const result = []; for (let num of numbers) { 阅读全文
摘要:
function userinput(text) { const input = document.getElementById('chat-input');//element input.value = text; input.dispatchEvent(new Event('input', { 阅读全文
摘要:
方案:解压到本地的大小 / zip文件总大小(解压后的) ,得出解压进度 先得出解压后的文件大小,然后解压到本地 const AdmZip = require("adm-zip"); const JSZip = require('jszip'); // 指定ZIP文件的路径 const admZip 阅读全文
摘要:
代码 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content= 阅读全文
摘要:
人气APC代码 (鬼剑士) 1501 幽灵鬼剑 1511 西岚 1512 中年人库兰 1513 奥尔卡 1515 鬼泣里恩 1516 索德罗斯1阶 1522 索德罗斯2阶 1523 索德罗斯3阶 1524 索德罗斯4阶 1517 觉醒后的巴伦 1518 阿修罗狂魔 1519 神剑梁月 1520 贪玩 阅读全文
摘要:
代码: 第二版:使用MutationObserver API监听dom init() async function init() { let jq = null if (!document.querySelector('#jquery')) { jq = document.createElement 阅读全文
摘要:
js for (let i = 2; i <= 100; i++) { let iszs = true for (let j = 2; j < i; j++) { if (i % j 0) { iszs = false break } } if (iszs) { zs.push(i) } } con 阅读全文
摘要:
nodejs 普通文本转base64文本 const base64 = Buffer.from('你好啊,我叫herry菌', 'utf8').toString('base64'); console.log(base64) nodejs base64文本转普通文本 const text = Buff 阅读全文