上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 49 下一页
摘要: 一、验证radio、checkbox form.verify({ mustradio: function (value, item) { //单选按钮必选 var val = $(item).parent().find("input[name='answer']:checked").val(); i 阅读全文
posted @ 2020-09-26 13:15 样子2018 阅读(746) 评论(0) 推荐(0) 编辑
摘要: /* *@通过curl方式获取指定的图片到本地 *@ 完整的图片地址 *@ 要存储的文件名 */ function getImg($url = "", $filename = ""){ //去除URL连接上面可能的引号 $hander = curl_init(); $fp = fopen($file 阅读全文
posted @ 2020-09-22 16:27 样子2018 阅读(780) 评论(0) 推荐(0) 编辑
摘要: <input type="number" required oninvalid="this.setCustomValidity('请输入目录等级');" oninput="this.setCustomValidity('')" min="1" name="level[]" class="form-c 阅读全文
posted @ 2020-09-21 09:57 样子2018 阅读(497) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>js加密</title> </head> <body> <script> var str = "alert('hello js')"; eval(jsEncod 阅读全文
posted @ 2020-09-19 10:28 样子2018 阅读(390) 评论(0) 推荐(0) 编辑
摘要: 一、App.js //app.js App({ onLaunch: function (options) { console.log(options) }, globalData: { userInfo: null, token: 'Yang' }, //以下为生成签名代码 getSign(url, 阅读全文
posted @ 2020-09-18 11:05 样子2018 阅读(718) 评论(0) 推荐(0) 编辑
摘要: 插件:https://underscorejs.net/ 建议:单独创建一个js配置文件存放token,然后加密该文件。 一、前端 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>接口验签</title> < 阅读全文
posted @ 2020-09-18 10:31 样子2018 阅读(631) 评论(0) 推荐(0) 编辑
摘要: <div class="init-loading"> <div class="loader"></div> </div> var loading = View.find('.init-loading'); loading.setAttribute('class', 'hide'); @keyfram 阅读全文
posted @ 2020-09-15 14:43 样子2018 阅读(300) 评论(1) 推荐(0) 编辑
摘要: /** * 定义动画 */ @keyframes fadeIn{ from{opacity: 0;} to{opacity: 1;} } @keyframes fadeOut{ from{opacity: 1;} to{opacity: 0;} } @keyframes hideToLeft{ fr 阅读全文
posted @ 2020-09-15 14:35 样子2018 阅读(290) 评论(1) 推荐(0) 编辑
摘要: 一、banner广告 <ad unit-id="adunit-6522d0488e5925c3"></ad> 二、插屏广告 // 在页面中定义插屏广告 let interstitialAd = null // 在页面onLoad回调事件中创建插屏广告实例 if (wx.createInterstit 阅读全文
posted @ 2020-09-14 16:55 样子2018 阅读(372) 评论(0) 推荐(0) 编辑
摘要: 1、用 in 关键字 var a = {name:"yang"} 'children' in a => false 2、hasOwnProperty var obj = {name:'jack'}; obj.hasOwnProperty('name'); // --> true obj.hasOwn 阅读全文
posted @ 2020-08-21 12:59 样子2018 阅读(4903) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 49 下一页