上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页
摘要: 同步 uni.setStorageSync('cunData', this.curID); uni.getStorageSync('cunData') uni.removeStorageSync('cunData') 异步 uni.setStorage({ key: 'Token', data: r 阅读全文
posted @ 2021-10-11 14:30 石头记1 阅读(271) 评论(0) 推荐(0)
摘要: pc function cans() { var canvas = document.createElement('canvas'); var ctx = canvas.getContext('2d'); var txt = 'http://security.tencent.com/'; ctx.t 阅读全文
posted @ 2021-10-11 13:38 石头记1 阅读(645) 评论(0) 推荐(0)
摘要: vue3 <template> <el-dialog :title="dialogTitle" :draggable="false" v-model="dialogVisible" :show-close="false" :width="dyWid" style="margin-top: 10vh; 阅读全文
posted @ 2021-10-09 14:02 石头记1 阅读(262) 评论(0) 推荐(0)
摘要: 最近整理Easyui控件的时候,对Easyui的DateBox控件和DateTimeBox控件进行了梳理,而我之所以将EasyUI的DateBox控件和DateTimeBox控件放在一起,归为一类,是因为这两个控件没有什么区别,如果你非得说这两个控件有区别,也无非是DateTimeBox控件后面除了 阅读全文
posted @ 2021-08-17 09:31 石头记1 阅读(468) 评论(0) 推荐(0)
摘要: //实际图片的宽高 var hei = $("#curtanDiv")[0].height; var wid = $("#curtanDiv")[0].width; //容器的宽高 var czhei = parseInt($("#BankChange").css('height')) - 35; 阅读全文
posted @ 2021-06-22 09:47 石头记1 阅读(197) 评论(0) 推荐(0)
摘要: <embed wmode="transparent" src="https://files.cnblogs.com/files/jingmoxukong/honehone_clock_tr.swf" quality="high" bgcolor="#FDF6E3" width="240" heigh 阅读全文
posted @ 2021-05-14 13:50 石头记1 阅读(53) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>简单的计时器</title> </head> <body> <input type="button" id="start" onclick="startTime()" value= 阅读全文
posted @ 2021-05-07 13:59 石头记1 阅读(81) 评论(0) 推荐(0)
摘要: 今天要讲的这个并不复杂,我用一个例子来讲解吧 <div id="box"></div> var box = document.querySelector("#box"); box.addEventListener("click",function(){ console.log("click"); } 阅读全文
posted @ 2021-05-06 11:55 石头记1 阅读(427) 评论(0) 推荐(0)
摘要: html { overflow: hidden; height: 100% } body { /* 视差元素的父级需要3D视角 */ perspective: 1px; transform-style: preserve-3d; height: 100%; overflow-y: scroll; o 阅读全文
posted @ 2021-04-21 10:55 石头记1 阅读(128) 评论(0) 推荐(0)
摘要: 一、原生js创建ajax 分一下几步: 1.创建XMLHttpRequest对象 var xhr = new XMLHttpRequest(); 2.设置请求成功后的操作 xhr.onreadystatechange = function() { if (xhr.readyState == 4) { 阅读全文
posted @ 2021-04-19 17:44 石头记1 阅读(1203) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页