07 2021 档案
摘要:我的情况是别人已经把环境搭好了,我只需要部署就行了 1.现在下载两个软件 Xshell7 是用来写命令的; Xftp7 是用来把文件传输到服务器上去的; 安装很简单的,下一步,一路下去就行了; 然后配置: 它们的配置是差不多的 新建对话框 在连接过程会弹出对话框叫你输入名字和密码 连接成功后就是会是
阅读全文
摘要:一般都是通过a标签来跳转的,有时需要通过js来跳转;特意记录一下; window.location.href = url; // 在原标签页打开新的网址 window.location = url; // 在原标签页打开新的网址 window.open(url, '_blank'); // 在新的页
阅读全文
摘要:"use strict"; const t = { height: 111 } function CreateP(name, age) { this.name = name; this.age = age; } CreateP.prototype = t; const p = new CreateP
阅读全文
摘要:hasOwnProperty验证对象属性是属于自身而不是从原型链上继承的; 如: const p = { name: 'sky', age: 22, }; p.hasOwnProperty('name'); // true p.hasOwnProperty('constructor'); // fa
阅读全文

浙公网安备 33010602011771号