上一页 1 ··· 41 42 43 44 45 46 47 48 49 ··· 63 下一页
摘要: <!-- detail.wxml --> <view class="picker"> <picker range="{{range}}" bindchange="pickerChange"> 选择数量: <text>{{num}}</text> </picker> </view> // detail 阅读全文
posted @ 2019-12-20 20:44 吴小明- 阅读(1028) 评论(0) 推荐(0) 编辑
摘要: // 在utils-->base.js中,封装一个Base类,有一个axios方法 class Base{ constructor(){ } axios(method,url,data){ console.log("调用到了axios") let method = method || "POST"; 阅读全文
posted @ 2019-12-19 21:42 吴小明- 阅读(522) 评论(0) 推荐(0) 编辑
摘要: 1、狗屁不通文章生成器 https://suulnnka.github.io/BullshitGenerator/index.html 2、在线表情包制作器 https://www.52doutu.cn/maker/2/?order=timedown http://www.doutula.com/m 阅读全文
posted @ 2019-12-14 19:11 吴小明- 阅读(6422) 评论(0) 推荐(0) 编辑
摘要: ①打开酷我音乐,输入要下载的歌曲,如:a little love ②按下f12或者右键-检查打开控制台,点击Network,点击XHR,刷新一下浏览器(ctrl+R) ③点击Name下最后一个数据,此时右边会有详细介绍,点击Preview,选中url地址 ④将刚刚复制的地址在新窗口粘贴,回车,就可以 阅读全文
posted @ 2019-12-11 19:04 吴小明- 阅读(3765) 评论(0) 推荐(0) 编辑
摘要: mac快捷键 shift+command+delete 清除缓存 shift+command+. 查看隐藏文件 ctrl+空格 切换输入法 shift+option+F11/F12 精细调节声音 fn+F12 打开控制台 command+Z 撤销 shift+command+Z 取消撤销 终端快捷键 阅读全文
posted @ 2019-12-11 10:26 吴小明- 阅读(335) 评论(0) 推荐(0) 编辑
摘要: 1、异步接口的保存用Save开头,导出用Export开头 2、优化时,所有的页面删除多余的空格和注释,tpl文件删除var_dump(),js文件不要用ES6语法,删除console.log(),php文件删除var_dump() 3、// 初始化时间选择器 datepickerClass.init 阅读全文
posted @ 2019-12-11 10:24 吴小明- 阅读(119) 评论(0) 推荐(0) 编辑
摘要: <body> <ul> <li>这是第一行</li> <li>这是第二行</li> <li>这是第三行</li> <li>这是第四行</li> <li>这是第五行</li> </ul> </body> 第一种: var lis=document.getElementsByTagName("li"); 阅读全文
posted @ 2019-12-08 12:09 吴小明- 阅读(1719) 评论(0) 推荐(0) 编辑
摘要: 1、官网jQuery压缩版引用地址: 3.1.1 <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> 3.0.0 <script src="https://code.jquery.com/jquery-3.0.0.m 阅读全文
posted @ 2019-12-08 11:00 吴小明- 阅读(3279) 评论(0) 推荐(0) 编辑
摘要: 第一种方法: var paramsArray = window.location.search.substr(1).split('&'), i, paramsObj = {}; paramsArray.forEach(function(item){ i = item.indexOf('='); pa 阅读全文
posted @ 2019-12-08 10:33 吴小明- 阅读(633) 评论(0) 推荐(0) 编辑
摘要: 加上样式: input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none; } input[type="number"]{ -moz-appearance: textfiel 阅读全文
posted @ 2019-12-07 14:27 吴小明- 阅读(1052) 评论(0) 推荐(0) 编辑
上一页 1 ··· 41 42 43 44 45 46 47 48 49 ··· 63 下一页