摘要: <!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> *{margin: 0;padding: 0;list-style: none;} .container{heigh 阅读全文
posted @ 2020-08-18 23:27 陈小浩 阅读(170) 评论(0) 推荐(0) 编辑
摘要: class A { constructor(name,age ) { 把constructor整体换成: this.name = name; > static name = 'qwe'; this.age = age >static age = 12; } 后得到 say(){ console.lo 阅读全文
posted @ 2020-07-27 19:56 陈小浩 阅读(263) 评论(0) 推荐(0) 编辑
摘要: class A { constructor(name,age) { this.name = name ; this.age = age; } say(){ console.log(this) //指向实例对象 console.log(`I am ${this.name}`) } static sss 阅读全文
posted @ 2020-07-27 17:15 陈小浩 阅读(280) 评论(0) 推荐(0) 编辑
摘要: <body> <div id="box"> </body> <script type="text/javascript"> class A { constructor() { this.box = document.getElementById("box"); //获取父节点 this.img = 阅读全文
posted @ 2020-07-27 17:09 陈小浩 阅读(386) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html><html><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compa 阅读全文
posted @ 2020-07-24 20:36 陈小浩 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 恢复内容开始 概念: 函数防抖(debounce):触发高频事件后n秒内函数只会执行一次,如果n秒内高频事件再次被触发,则重新计算时间。 函数节流(throttle):高频事件触发,但在n秒内只会执行一次,所以节流会稀释函数的执行频率。 函数节流(throttle)与 函数防抖(debounce)都 阅读全文
posted @ 2020-01-20 11:23 陈小浩 阅读(178) 评论(0) 推荐(0) 编辑
摘要: hand.png rod.png toy117.png bg.png start.png 记得引入jQuery.min.js!!!! 阅读全文
posted @ 2019-09-28 20:14 陈小浩 阅读(259) 评论(1) 推荐(0) 编辑
摘要: <!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> ul ul {display: none;} </style> </head> <body> <ul class=" 阅读全文
posted @ 2019-09-23 00:05 陈小浩 阅读(1253) 评论(0) 推荐(0) 编辑
摘要: ajax的概念:ajax是前后端数据交互的重要手段,Ajax 全称为:“Asynchronous JavaScript and XML”, ajax的介绍:它本身不是单一技术,是一串技术的集合; 1.JavaScript,通过用户或其他与浏览器相关事件捕获交互行为 2.XMLHttpRequest 阅读全文
posted @ 2019-09-12 13:57 陈小浩 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 以上是一个九宫格,要想实现元素的拖拽和互换,如点击A到E的位置是,A会拖拽到E的位置,E会自动返回到A的位置;代码如下: 阅读全文
posted @ 2019-09-07 17:05 陈小浩 阅读(1208) 评论(0) 推荐(0) 编辑