码迷,mamicode.com
首页 >  
搜索关键字:document getelementbyid    ( 20305个结果
加载js脚本函数
加载单个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
vue部分页面重置rem比例
项目情况: mobile、pc在同一个项目中,希望mobile项目引入重置rem比例的文件 缺点: 每个mobile的页面都需要引入、希望有大神知道怎么解决 1.新建rem.js文件 export function resetRem () { let html = document.document ...
分类:其他好文   时间:2020-07-02 20:02:47    阅读次数:142
17.动态规划之青蛙跳台阶代码实现(JavaScript版)
动态规划之青蛙跳台阶 <!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
js设置/获取剪切板内容
//设置剪切板内容document.addEventListener("copy",function () { if (event.clipboardData || event.originalEvent) { var clipboardData = (event.clipboardData || ...
分类:Web程序   时间:2020-07-02 18:02:04    阅读次数:100
document对象的一些属性
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
Cryptocurrency Security Compliance
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
20305条   上一页 1 ... 52 53 54 55 56 ... 2031 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!