04 2022 档案

摘要:/* * 发送短信 * sendSms * by GaoSir ChurChill * 2022年04月14日 * */ import common from './../plugins/common' var sendSms = {}; // h5发送短信 sendSms.sendH5Note = 阅读全文
posted @ 2022-04-14 19:16 高sir不会跳舞 阅读(48) 评论(0) 推荐(0)
摘要:可以通过这个获取 window.navigator.userAgent; //判断H5页面是否在微信/企业微信环境中打开: var ua = navigator.userAgent.toLowerCase(); // 将用户代理头的值转为小写 //判断微信的方法的两种方法: ua.match(/mi 阅读全文
posted @ 2022-04-14 11:03 高sir不会跳舞 阅读(1299) 评论(0) 推荐(0)
摘要:只允许输入数字(整数:小数点不能输入) <input type="text" οnkeyup="value=value.replace(/[^\d]/g,'')" > 允许输入小数(一位小数) <input type="text" οnkeyup="value=value.replace(/^\D* 阅读全文
posted @ 2022-04-12 17:39 高sir不会跳舞 阅读(1640) 评论(0) 推荐(0)
摘要:sourceTree每次pull/ push时都要提示输入密码: password required 解决: 1、打开目录窗口—终端 2、终端输入 ,回车 git config credential.helper store 3、 重新拉取代码,在提示框内输入密码 4、之后再pull/ push 就 阅读全文
posted @ 2022-04-08 15:35 高sir不会跳舞 阅读(799) 评论(0) 推荐(0)
摘要:angular 全选举例如下 // html代码 <body ng-app="app"> <div> <--全选功能--> <input type="checkbox" name="checkbox" ng-model="all" ng-click="updateAll(all)" ng-check 阅读全文
posted @ 2022-04-07 09:34 高sir不会跳舞 阅读(154) 评论(0) 推荐(0)