摘要: html里input加上 <input type="text" id="txt1" value="" onkeyup="toUpperCase(this)"/> js写函数 function toUpperCase(obj) { obj.value = obj.value.toUpperCase() 阅读全文
posted @ 2018-05-17 09:27 小宋宋 阅读(605) 评论(0) 推荐(0) 编辑
摘要: const _keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="; // private property // public method for encoding function encode(input) { var output = ... 阅读全文
posted @ 2018-05-15 16:29 小宋宋 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 一、校验数字的表达式 数字:^[0-9]*$n位的数字:^\d{n}$至少n位的数字:^\d{n,}$m-n位的数字:^\d{m,n}$零和非零开头的数字:^(0|[1-9][0-9]*)$非零开头的最多带两位小数的数字:^([1-9][0-9]*)+(.[0-9]{1,2})?$带1-2位小数的正 阅读全文
posted @ 2018-05-15 09:13 小宋宋 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 1.安装微信web开发者工具,注意不是开发小程序的那个 2安装好后微信扫码登录,微信上需要绑定一个公众号授权登录,在手机上打开无线局域网,链接所在区域的无线网(和电脑在同一局域网)在服务器一栏输入ip地址,端口输入端口号 3.ip和端口号在这里获取配置之后点击开始调试 4.将需要调试的接口url放在 阅读全文
posted @ 2018-05-11 09:29 小宋宋 阅读(2817) 评论(0) 推荐(0) 编辑
摘要: css样式 js代码 阅读全文
posted @ 2018-05-10 16:07 小宋宋 阅读(437) 评论(0) 推荐(0) 编辑
摘要: for of 用法 for (const _key of Object.keys(formItem[0])) { } 获取两个字符串之间的值 getNum(str, firstStr, secondStr) { if (str "" || str null || str undefined) { / 阅读全文
posted @ 2018-05-10 10:16 小宋宋 阅读(424) 评论(0) 推荐(0) 编辑