摘要:
试试路由插件 uni-simple-router 阅读全文
摘要:
01 为元素添加on方法 Element.prototype.on = Element.prototype.addEventListener; NodeList.prototype.on = function (event, fn) { []['forEach'].call(this, functi 阅读全文
摘要:
新建一个js文件 getPhoneInfo.js (也可以直接写在mian.js) export const getPhoneInfo = () => { const phoneInfo = uni.getSystemInfoSync(); // 获取手机系统信息 let statusBarObj 阅读全文
摘要:
1、输入一个值,返回其数据类型** function type(para) { return Object.prototype.toString.call(para) } 2、数组去重 function unique1(arr) { return […new Set(arr)] } function 阅读全文
摘要:
加载js || css || style const loadRes = function(name, type, fn) { // 加载js || css || style let ref if (type 'js') { // 外部js ref = document.createElement( 阅读全文
摘要:
const fn = () => { /*rem*/ let zj_width = 750; //设计稿尺寸 /*让文字和标签的大小随着屏幕的尺寸做变化 等比缩放*/ let html = document.querySelector("body"); /*取到屏幕的宽度*/ let width = 阅读全文
摘要:
https://api.ixiaowai.cn/mcapi/mcapi.php 阅读全文
摘要:
60+ 个前端常用插件库合集 DataTables 官网:https://www.datatables.net/ DataTables是jQuery的JavaScript函数库,目的是强化表格操作(如搜索、排序),并自动加入组件引入表格中,使用非常灵活简便。 LazyLoad 官网:Lazy Loa 阅读全文
摘要:
本文实例讲述了es6中使用map简化复杂条件判断操作。分享给大家供大家参考,具体如下: 复杂逻辑判断时需要写很多if/else,代码可读性较差,可以用es6新增的Map来简化代码 列举六种实例,逐步简化 /** * 按钮点击事件 * @param {number} status 活动状态:1 开团进 阅读全文
摘要:
使用bash下载 curl -fsSL https://deno.land/x/install/install.sh | sh 配置用户环境变量 C:\Users\你的用户名\.deno\bin 阅读全文