上一页 1 ··· 5 6 7 8 9 10 11 12 13 14 下一页
摘要: uniApp 在App.vue 写上globalData和onShow同级 onShow(){}, globalData:{ } 调用 let app = getApp(); app.globalData={} 阅读全文
posted @ 2020-12-30 09:09 小泽沐优声 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 绘制自动换行的字符串 drawText(ctx, txtwid, t, x, y, w){ var chr = t.split(""); var temp = ""; var row = []; ctx.font = "20px Arial"; ctx.fillStyle = "black"; ct 阅读全文
posted @ 2020-12-28 14:44 小泽沐优声 阅读(511) 评论(1) 推荐(0) 编辑
摘要: JS删除数组里的某个值 更新2016-11-17:在stackoverflow高分回答上看到jquery之父John Resig曾经的文章写过的一个代码: // Array Remove - By John Resig (MIT Licensed) Array.prototype.remove = 阅读全文
posted @ 2020-12-27 00:07 小泽沐优声 阅读(511) 评论(0) 推荐(0) 编辑
摘要: JS获取当前IP地址 获取客户端公网IP <script src="http://pv.sohu.com/cityjson?ie=utf-8"></script> <script type="text/javascript"> document.write(returnCitySN["cip"]+' 阅读全文
posted @ 2020-12-26 23:55 小泽沐优声 阅读(2624) 评论(0) 推荐(0) 编辑
摘要: 生成项目目录结构工具——mddir 实现步骤很简单 安装cnpm install mddir -g cd到这个你要生成的目录 执行cmd执行mddir 会在当前目录生成directoryList.md文件 生成后 |-- wxcomponents |-- vant |-- action-sheet 阅读全文
posted @ 2020-12-24 15:56 小泽沐优声 阅读(97) 评论(0) 推荐(0) 编辑
摘要: document.body.contentEditable='true'; 阅读全文
posted @ 2020-12-18 22:12 小泽沐优声 阅读(58) 评论(0) 推荐(0) 编辑
摘要: js导出excel文件 这里介绍一种前端导出excel表格的方法,感觉非常简单实用,直接贴代码。 直接复制代码 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>导出excel实例</title> </head> <body> < 阅读全文
posted @ 2020-12-12 22:56 小泽沐优声 阅读(323) 评论(0) 推荐(0) 编辑
摘要: vue3安装ant 全局安装 -- 指令 cnpm i --save ant-design-vue@next -S main.js -- 引入 import { createApp } from "vue"; import App from "./App.vue"; import router fr 阅读全文
posted @ 2020-12-06 00:25 小泽沐优声 阅读(205) 评论(0) 推荐(0) 编辑
摘要: vue脚手架 <template> <div class="s-canvas"> <canvas id="s-canvas" :width="contentWidth" :height="contentHeight"></canvas> </div> </template> <script> con 阅读全文
posted @ 2020-11-27 20:35 小泽沐优声 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 获取现在时间 并转换格式 class Point{ nowTime(format){ //时间转换格式 let date = new Date(),times; if(format=='yy-mm-dd hh:mm:ss'){//yy-mm-dd hh:mm:ss times=date.getFul 阅读全文
posted @ 2020-11-26 12:08 小泽沐优声 阅读(539) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 14 下一页