摘要:
正则对象 /** * y 修饰符的作用与 g 修饰符类似,也是全局匹配,后一次匹配都从上一次匹配成功的下一个位置开始。 * 不同之处在于,g 修饰符只要剩余位置中存在匹配就可,而 y 修饰符确保匹配必须从剩余的第一个位置开始 **/ let str1 = 'bbb_bb_b' let reg1 = /b+/g let reg2 = /b+/y console.log('1', reg1.exec( 阅读全文
摘要:
变量 let num = 123 const str = '123' console.log(num, str) 解构赋值 { let a, b, c [a, b, c = 3] = [1, 2] // 1 2 3 console.log(a, b, c) } { let a, b, arr [a, b, ...arr] = [1, 2, 4, 5, 6, ... 阅读全文
摘要:
state.js mutations.js index.js 页面上使用 阅读全文
摘要:
let viewTimer = null function viewPort(userAgent, pageWidth) { let oView = document.getElementById('viewport') if (oView) { document.head.removeChild(oView) } if (!pageWidth) { // 手机页面设计图的宽度,宽度多少设置多少 阅读全文
摘要:
我们在需要打包的.py所在的文件夹新建py文件,在此处命名为build_pyd.py,其内容如下: 执行以下cmd命令 等pyd文件即编译好,执行pyinstaller打包py文件 阅读全文
摘要:
滚动到元素顶部 document.querySelector(el).scrollTo(0, 0) 获取协议 const protocol = window.location.protocol 将table导出为xlsx import FileSaver from 'file-saver' impo 阅读全文
摘要:
保存为后缀.reg,运行重启后即可去除 阅读全文
该文被密码保护。 阅读全文