摘要:
VConsole <script src="https://cdn.bootcdn.net/ajax/libs/vConsole/3.9.0/vconsole.min.js"></script> <script> // init vConsole var vConsole = new VConsol 阅读全文
摘要:
无跳转重写url HTML5新接口,可以改变网址而不刷新页面 存在跨域问题,不支持重写到另一个域名下 仅改变网址,网页不会真的跳转,也不会获取到新的内容,本质上网页还停留在原页 一、window.history.pushState(data, title, targetURL); @状态对象:传给目 阅读全文
摘要:
onpageshow 事件在每次加载页面时触发,onload 事件在页面第一次加载时触发,即 onload 事件在页面从浏览器缓存中读取时不触发。 onpagehide事件,该事件会在浏览器卸载页面的时候触发,而且是在unload事件之前触发。 $(function () { var isPageH 阅读全文
摘要:
https://blog.csdn.net/dengsilinming/article/details/8000622 https://zhuanlan.zhihu.com/p/129854679?utm_source=wechat_session&utm_medium=social&utm_oi= 阅读全文
摘要:
参考:https://www.cnblogs.com/yelongsan/p/9075591.html 阅读全文
摘要:
说明:GUID是一种由算法生成的二进制长度为128位的数字标识符。GUID 的格式为“xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx”,其中的 x 是 0-9 或 a-f 范围内的一个32位十六进制数。GUID 的总数达到了2^128(3.4×10^38)个,所以随机生成两 阅读全文
摘要:
1.找到数组中重复的元素 function findRepeatNumInArray(arr) { let hashMap = new Map(); let result = new Array(); for (let i = 0; i < arr.length; i++) { hashMap.se 阅读全文
摘要:
后台返回数据涨这个样子: 前端处理: let blob = new Blob([response], { type: "application/x-xls" }); //res--后台返回的文件流 let link = document.createElement("a"); link.href = 阅读全文
摘要:
import React, { useEffect, useRef, useState } from 'react'; const CutDown = props => { const { shelfTime } = props;//截止时间 const timer = useRef(0); con 阅读全文