上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 65 下一页
摘要: wx.showLoading() 显示加载框,需要主动加 wx.hideLoading() 才能隐藏 样式: 示例代码: wx.showLoading({ title: '加载中', }) setTimeout(function () { wx.hideLoading() }, 2000) 阅读全文
posted @ 2020-01-09 15:24 GetcharZp 阅读(6675) 评论(0) 推荐(0) 编辑
摘要: wx.shoModal() 模态弹窗 样式: 示例代码: wx.showModal({ title: '提示', content: '这是一个模态弹窗', success (res) { if (res.confirm) { console.log('用户点击确定') } else if (res. 阅读全文
posted @ 2020-01-09 15:20 GetcharZp 阅读(299) 评论(0) 推荐(0) 编辑
摘要: wx.showToast()样式: 示例代码: wx.showToast({ title: '成功', icon: 'success', duration: 2000 }) 阅读全文
posted @ 2020-01-09 15:16 GetcharZp 阅读(702) 评论(0) 推荐(0) 编辑
摘要: getLauchOprionsSync() 作用:获取小程序启动时的参数 使用位置:JS文件的任意位置 实例代码: console.log(wx.getLaunchOptionsSync()); 阅读全文
posted @ 2020-01-09 14:56 GetcharZp 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 使用命令 nslookup nslookup + 网站域名 实例: nslookup www.baidu.com 返回结果: 服务器: UnKnown Address: 192.168.0.1 非权威应答: 名称: www.a.shifen.com Addresses: 14.215.177.39 阅读全文
posted @ 2020-01-08 14:36 GetcharZp 阅读(372) 评论(0) 推荐(0) 编辑
摘要: 第一步:自定义单选框、复选框的层叠样式表,并将其映入 build.css: .checkbox { padding-left: 20px; } .checkbox label { display: inline-block; vertical-align: middle; position: rel 阅读全文
posted @ 2020-01-08 13:55 GetcharZp 阅读(965) 评论(0) 推荐(0) 编辑
摘要: 参考资料 clipboard 简介: clipboard 是一个很小的JS框架,我们只需要通过 script 标签将其引入,就可以使用它提供的复制功能。 方法一:将待复制的值放在 data-clipboard-text 中,当点击该标签的时候就会将该值复制到剪贴板 <script src="http 阅读全文
posted @ 2020-01-07 17:51 GetcharZp 阅读(950) 评论(0) 推荐(0) 编辑
摘要: 这里只有通过手机端的浏览器访问的时候才可以打开微信 <a target="_blank" href="weixin://"> 点击我打开微信 </a> 阅读全文
posted @ 2020-01-07 16:13 GetcharZp 阅读(973) 评论(0) 推荐(0) 编辑
摘要: 只需修改链接中的QQ号为你想用户打开对话的QQ号即可 <a target="_blank" href="http://wpa.qq.com/msgrd?v=1&uin=QQ号&site=qq&menu=yes"> 联系我们 </a> 阅读全文
posted @ 2020-01-07 16:04 GetcharZp 阅读(427) 评论(0) 推荐(0) 编辑
摘要: 简介: 既然是固件升级那么要求我们必须要每个固件指定一个版本,当然这个东西还不能只有你自己知道,你还要将这个版本信息通过 发布PUB 的方式让别人知道;然后再说说更新这回事,其实就是阿里云那边为你准备一个固件的下载链接,你要做的就是通过他所指定的方法获取该固件的URL,再通过你系统只带的 HttpU 阅读全文
posted @ 2020-01-07 15:32 GetcharZp 阅读(969) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 65 下一页