咏竹莉
where there is a will,there is a way
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页
摘要: 1. Object.create(obj, [descriptors]) 作用: 以指定对象为原型,创建新的对象。同时,第二个参数可以为新的对象添加新的属性,并对此属性进行描述。 举例:(没有第二个参数时) var obj1 = {username: 'smyhvae', age: 26}; var 阅读全文
posted @ 2021-07-16 11:34 咏竹莉 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 1.打开https://www.ipaddress.com/,(解析gist对应的ip)输入gist.github.com获取IP地址。 2. ping此ip 地址,可以访问 3. 将IP地址写入本地Hosts文件。 140.82.112.4 gist.github.com 4. 本地刷新DNS缓存 阅读全文
posted @ 2021-07-15 11:27 咏竹莉 阅读(1347) 评论(0) 推荐(0) 编辑
摘要: 勾上此选项 阅读全文
posted @ 2021-07-14 11:53 咏竹莉 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 1. 点击右下角空格 2. 选择使用空格缩进 3. 选择4设置为 4个空格 阅读全文
posted @ 2021-07-14 11:40 咏竹莉 阅读(1026) 评论(0) 推荐(1) 编辑
摘要: 1. 页面引入 (样式修改参考项目) <div class="calendarBar"> <input type="text" class="Wdate inputDate" value="2021-06" /> </div> 2. 使用 $('.inputDate').click(function 阅读全文
posted @ 2021-07-13 14:47 咏竹莉 阅读(367) 评论(0) 推荐(0) 编辑
摘要: 第一种省略括号: /*方法1*/ if(a > b) console.log('a大'); else console.log('b大'); /*三元操作运算符*/ a> b ? 'a大' : 'b大' 第二种使用对象形式: let orderStatus = '' if (res.data.stat 阅读全文
posted @ 2021-07-08 15:15 咏竹莉 阅读(490) 评论(0) 推荐(0) 编辑
摘要: 安装工具 homebrew (之前本机已安装) 安装nginx 1. 打开终端: brew update 2. 查看nginx是否存在 brew search nginx 3. 查看nginx信息 brew info nginx 4. 若无nginx,开始安装: brew install nginx 阅读全文
posted @ 2021-07-08 10:53 咏竹莉 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 1. 想本地启动打包后的文件,需要本地安装nginx 具体安装步骤百度,本机已安装 安装步骤:[https://www.cnblogs.com/tandaxia/p/8810648.html](https://www.cnblogs.com/tandaxia/p/8810648.html) 2. 打 阅读全文
posted @ 2021-07-08 10:29 咏竹莉 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 操作DOM节点,做常用的是document.getElementById() 和 document.getElementsByTagName() , 以及css选择器document.getElementsByClassName(); document.getElementsByTagName() 阅读全文
posted @ 2021-07-02 10:18 咏竹莉 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 浏览器 浏览器窗口的内部宽: window.innerWidth 浏览器窗口的内部高: window.innerHeight 内部宽高是指去除菜单栏、工具栏、边框等站位元素,用于显示网页的净宽高。 浏览器的整体宽高: window.outerWidth、 window.outerHeight nav 阅读全文
posted @ 2021-06-30 14:32 咏竹莉 阅读(626) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页