09 2021 档案
摘要:var ss = false; var ua = navigator.userAgent; var ipad = ua.match(/(iPad).*OS\s([\d_]+)/), isIphone =!ipad && ua.match(/(iPhone\sOS)\s([\d_]+)/), isAn
阅读全文
摘要:js递归遍历 https://www.cnblogs.com/hellofangfang/p/13395398.html //返回公约数的数组集合 function f(a,n=1,b=[]){ if(a%n 0){ b.push(n) } n++; if(n>a){ return b } retu
阅读全文