加载单个js脚本 var loadSingleScript = function (src, callback) { var s = document.createElement('script'); s.async = false; s.src = src; s.addEventListener( ...
分类:
Web程序 时间:
2020-07-03 10:30:28
阅读次数:
68
项目情况: mobile、pc在同一个项目中,希望mobile项目引入重置rem比例的文件 缺点: 每个mobile的页面都需要引入、希望有大神知道怎么解决 1.新建rem.js文件 export function resetRem () { let html = document.document ...
分类:
其他好文 时间:
2020-07-02 20:02:47
阅读次数:
142
动态规划之青蛙跳台阶 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <titl ...
分类:
编程语言 时间:
2020-07-02 19:58:29
阅读次数:
122
//设置剪切板内容document.addEventListener("copy",function () { if (event.clipboardData || event.originalEvent) { var clipboardData = (event.clipboardData || ...
分类:
Web程序 时间:
2020-07-02 18:02:04
阅读次数:
100
document.domain // 返回当前网站的域名 document.cookie // 获取所有cookie document.title // 当前文档标题 document.URL // 当前文档的地址 // document.location.href 和 window.locatio ...
分类:
其他好文 时间:
2020-07-02 16:44:03
阅读次数:
46
原因:是内容过多,渲染不及时; 解决办法:body元素前加这个js; <script type="text/javascript"> var docEl = document.documentElement; var clientWidth = window.innerWidth; if(clien ...
分类:
移动开发 时间:
2020-07-02 16:32:05
阅读次数:
86
https://www.redteamsecure.com/compliance/cryptocurrency-security/ The CryptoCurrency Security Standard (CCSS) is a set of requirements designed to gov ...
分类:
其他好文 时间:
2020-07-02 13:34:38
阅读次数:
64
from docx import Document w=Document(r'F:\word练习\ss.docx') paragraph=w.paragraphs[1] print('删除前图片的数量:',len(w.inline_shapes)) paragraph.clear() print(' ...
分类:
其他好文 时间:
2020-07-02 13:21:56
阅读次数:
35
from docx import Document from docx.shared import Cm w=Document(r'F:\word练习\qq.docx') run=w.tables[0].cell(0,0).paragraphs[0].add_run() run.add_pictur ...
分类:
其他好文 时间:
2020-07-02 11:57:14
阅读次数:
75
$(document).on("click", function() { backHomePage(); }) backHomePage(); var backHomePageTimer = null; //页面无操作在5分钟后返回主界面 function backHomePage() { if ( ...
分类:
其他好文 时间:
2020-07-01 14:27:51
阅读次数:
74