摘要: 1.使用for循环加indexOf 2.使用for循环加includes 3.使用ES6中的set对象 Set 对象允许你存储任何类型的唯一值,无论是原始值或者是对象引用。 Set 中的特殊值 Set 对象存储的值总是唯一的,所以需要判断两个值是否恒等。有几个特殊值需要特殊对待: +0 与 -0 在 阅读全文
posted @ 2019-10-23 22:20 林夕孟 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 1.实现正则表达式手机验证。 常见手机号码都是11位 前3位表示地区以及运营商 正则表达式reg 中 ^1 表示以1开头的 (3[0-9]) 表示第2个数是3, 3后面跟的数据是从0-9的数字 所以这里就有两个数 \d{8} 后面跟8个数字 由于有联通号码段,移动号码段,电信号码段 所以使用了|或运 阅读全文
posted @ 2019-10-22 22:43 林夕孟 阅读(788) 评论(0) 推荐(0) 编辑
摘要: git init // 初始化 git add . //添加 git commit -m '项目初始化' 在github中创建远程仓库 连接远程仓库 git remote add origin <url> 提交到远程仓库 git push -u origin master 在项目中编写代码后 git 阅读全文
posted @ 2019-10-18 22:58 林夕孟 阅读(144) 评论(0) 推荐(0) 编辑
摘要: page下的目录都可以删除。 app之下的文件都不能删除。 1.index.js Page({ /** * 页面的初始数据 */ data: { x:0, y:0, latitude: 23.099994, longitude: 113.324520, }, /** * 生命周期函数--监听页面加载 阅读全文
posted @ 2019-10-18 11:38 林夕孟 阅读(1069) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-10-17 19:13 林夕孟 阅读(1) 评论(0) 推荐(0) 编辑
摘要: a.html b.html a.html 如何传递参数给b.html 1.先将a.html的参数存储在storage中 2.切换到b.html时取storage数据 考虑步骤 1.使用bootstrap框架。 2.引入了vuejs文件。 3.如何防止刷新页面后数据不消失。解决存储在前端。前端存储的好 阅读全文
posted @ 2019-10-17 18:55 林夕孟 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 键盘按下时keydown 键盘按键松开时keyup 键盘按键按下后抬起时keypress 优先顺序keydown>keypress>keyup 输出结果: 键盘按下(keydown) 当在页面按下A 当在页面按下a 如何查看能否区分大小写的关键:charCode (unicode编码) 当在页面按下 阅读全文
posted @ 2019-08-25 21:57 林夕孟 阅读(365) 评论(0) 推荐(0) 编辑
摘要: <div class="div1"> father <div class="div2">son</div> </div> <style> .div1{ width: 200px; height: 200px; background-color: lightblue; } .div2{ width: 阅读全文
posted @ 2019-08-24 21:38 林夕孟 阅读(231) 评论(0) 推荐(0) 编辑
摘要: Date()的属性 var dt=new Date(); ==>Fri Aug 23 2019 19:48:21 GMT+0000 (中国标准时间) var h=dt.getHours(); ==>19 >获取到了当前时间 var m=dt.getMonth()+1; ==>8 ==>获取到了当前月 阅读全文
posted @ 2019-08-23 20:27 林夕孟 阅读(501) 评论(0) 推荐(0) 编辑
摘要: 节点是dom树的树枝,元素节点是给树枝添加了果实. 1.获取节点树 var div=document.querySelector(".div"); ==>.div(属性标签) 2.增加:给节点树添加元素(果实) var newdiv=document.createElement("p"); ==>创 阅读全文
posted @ 2019-08-22 23:27 林夕孟 阅读(308) 评论(0) 推荐(0) 编辑