上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 58 下一页
摘要: 将new操作单独封装,遇到new时,就要考虑是否该用工厂模式 示例 你去购买汉堡,直接点餐,取餐,没必要自己亲手做(这就是一个初始化实例的封装) 商店要‘封装’做汉堡的工作,做好直接给买者 class Product { constructor(name) { this.name = name; } 阅读全文
posted @ 2019-10-29 07:06 wzndkj 阅读(1332) 评论(0) 推荐(0) 编辑
摘要: 使用官网的下列这句话,装半天装不好 可以这样,在浏览器输入 https://raw.githubusercontent.com/Homebrew/install/master/install 打开之后 把网页文件保存下来 名称为 brew_install.rb 在终端输入curl如果显示 curl: 阅读全文
posted @ 2019-10-28 21:25 wzndkj 阅读(636) 评论(0) 推荐(0) 编辑
摘要: z的源码在这里:https://github.com/rupa/z/blob/master/z.sh 1、把源码复制到你的用户目录下的z.sh文件, 2、然后用vim打开.bashrc这个目录,在最后添加“source /Users/yourname/z.sh”。 3、打开默认启动执行脚本 ~/.z 阅读全文
posted @ 2019-10-28 21:20 wzndkj 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 第二题 某停车场,分三层,每层100车位 每个车位都能监控到车辆的驶入和离开 车辆进入前,显示每层的空余车辆数量 车辆进入时,摄像头可识别车牌号和时间 车辆出来时,出口显示器显示车牌号和停车时长 题目:画出UML类图 第二题 某停车场,分三层,每层100车位 每个车位都能监控到车辆的驶入和离开 车辆 阅读全文
posted @ 2019-10-28 10:25 wzndkj 阅读(136) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2019-10-28 06:28 wzndkj 阅读(6) 评论(0) 推荐(0) 编辑
摘要: empty() empty 顾名思义,清空方法,但是与删除又有点不一样,因为它只移除了 指定元素中的所有子节点。 <body> <div id="test"> <p>p元素1</p> <p>p元素2</p> </div> <button>点击通过jQuery的empty移除元素</button> < 阅读全文
posted @ 2019-10-25 17:36 wzndkj 阅读(3023) 评论(0) 推荐(0) 编辑
摘要: 往某个元素内部的结尾添加 append() appendTo() append() <body> <button id="bt1">点击通过jQuery的append添加元素</button> <div class="content"></div> <script type="text/javasc 阅读全文
posted @ 2019-10-25 16:27 wzndkj 阅读(333) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> <title></title> <link rel="stylesheet" href="imooc.css" type="text/css"> <style> input { display: bl 阅读全文
posted @ 2019-10-24 14:00 wzndkj 阅读(384) 评论(0) 推荐(0) 编辑
摘要: 子元素筛选选择器 input、text、password、radio、checkbox submit、image、reset、button、file ... 阅读全文
posted @ 2019-10-24 13:57 wzndkj 阅读(402) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> <title></title> <link rel="stylesheet" href="imooc.css" type="text/css"> <script src="https://www.im 阅读全文
posted @ 2019-10-24 13:40 wzndkj 阅读(10528) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 58 下一页