1.说一下<label>标签的用法

label标签主要是方便鼠标点击使用,扩大可点击的范围,增强用户操作体验

2.说一下事件代理?

事件委托是指将事件绑定到目标元素的父元素上,利用冒泡机制触发该事件

ulEl.addEventListener('click', function(e){
var target = event.target || event.srcElement;
if(!!target && target.nodeName.toUpperCase() === "LI"){
console.log(target.innerHTML);
}
}, false);

3.说一下宏任务和微任务?

JS是单进程模式,他会先执行同步,再执行微队列,后在执行宏队列。
微队列:promise回调、mutation回调
宏队列:DOM事件回调、ajax回调、定时器回调

4.说一下继承的几种方式及优缺点?

  • 原型链继承
function Parent(){
this.name=["KE","gg"]
}
Parent.prototype.getName=(){
console.log(this.name)}
function.Child(){
 
}
Child.prototype=new Parent()
var child1=new Child()
child1.name.push("tt")//["KE","gg","tt"]
var child2=new Child()
child2.name.push("hh")//["KE","gg","tt","hh"]
优点:简单、父类和子类共享属性
缺点:1.引用类型属性共享,2.创建Child实例时,不能像Parent传入参数
  • 构造函数继承
function Parent(){
this.name=["KE","gg"]
}
Parent.prototype.getName=(){
console.log(this.name)}
function.Child(){
Parent.call(this)
}
 
var child1=new Child()
child1.name.push("tt")//["KE","gg",'tt']
var child2=new Child()
child2.name.push("hh")//["KE","gg",'hh']
比较原型链继承
优点:1.不会实例共享引用型属性,2.可以向父传参
缺点:每创建一次实例就会重新生成方法属性
原型链的优缺点和构造函数优缺点相反
  • 组合继承
function Parent(color){
this.name=["KE","gg"],
this.color=color
}
Parent.prototype.getName=(){
console.log(this.name)}
function.Child(color,age){
Parent.call(this,color)
this.age=age
}
Child.prototype=new Parent()
var child1=new Child("red")
child1.name.push("tt")//["KE","gg",'tt']
child1.color//red
var child1=new Child("green")
child1.name.push("hh")//["KE","gg",'hh']
child1.color//green
优点:融合了原型链和构造函数继承的优点
  • 原型式继承
function createObj(o){
function f(){}
f.prototype=os
return new f()
}
缺点:实例共享引用型的属性
  • 寄生式继承
function createObj(o){
var clone=Object.create(o)
clone.sayName=function(){
console.log(0)
}
return clone
}
缺点:创建一次实例创建一次方法
  • 寄生式组合继承
function object(o){
function f(){}
f.prototype=o
return new f()
}
function protot(child,parent){
var prototype=object(parent.prototype)
prototype.constructor=child
child.prototype=prototype
}
调用两次构造函数

5.说一下自己常用的es6的功能?

1.let、const
2.解构
3.模板字符串
4.es6模块导出
5.类写法
6.promise对象
7.箭头函数
参考文献:
https://www.cnblogs.com/XYQ-208910/p/11942974.html

6.什么是会话cookie,什么是持久cookie?

cookie是服务器返回的,指定了expire time(有效期)的是持久cookie,没有指定的是会话cookie

7.数组去重?

js

var arr=['12','32','89','12','12','78','12','32'];
// 最简单数组去重法
function unique1(array){
var n = []; //一个新的临时数组
for(var i = 0; i < array.length; i++){ //遍历当前数组
if (n.indexOf(array[i]) == -1)
n.push(array[i]);
}
return n;
}
arr=unique1(arr);
// 速度最快, 占空间最多(空间换时间)
function unique2(array){
var n = {}, r = [], type;
for (var i = 0; i < array.length; i++) {
type = typeof array[i];
if (!n[array[i]]) {
n[array[i]] = [type];
r.push(array[i]);
} else if (n[array[i]].indexOf(type) < 0) {
n[array[i]].push(type);
r.push(array[i]);
}
}
return r;
}
//数组下标判断法
function unique3(array){
var n = [array[0]]; //结果数组
for(var i = 1; i < array.length; i++) { //从第二项开始遍历
if (array.indexOf(array[i]) == i)
n.push(array[i]);
}
return n;
}

es6

es6方法数组去重
arr=[...new Set(arr)];
es6方法数组去重,第二种方法
function dedupe(array) {
return Array.from(new Set(array)); //Array.from()能把set结构转换为数组
}

8.get、post的区别

1.get传参方式是通过地址栏URL传递,是可以直接看到get传递的参数,post传参方式参数URL不可见,get把请求的数据在URL后通过?连接,通过&进行参数分割。psot将参数存放在HTTP的包体内

2.get传递数据是通过URL进行传递,对传递的数据长度是受到URL大小的限制,URL最大长度是2048个字符。post没有长度限制

3.get后退不会有影响,post后退会重新进行提交

4.get请求可以被缓存,post不可以被缓存

5.get请求只URL编码,post支持多种编码方式

6.get请求的记录会留在历史记录中,post请求不会留在历史记录

7.get只支持ASCII字符,post没有字符类型限制

 

随机推荐

  1. Python循环语句代码详解:while、for、break

    1 while循环 循环语句是程序设计中常用的语句之一.任何编程语言都有while循环,Python也不例外.while循环的格式如下所示.  while(表达式):       -   else:  ...

  2. 【命令】kill命令

    kill命令详解: <---用于向进程发送信号,以实现对进程的管理---> 语法格式:kill  [-s signal|-SIGNAL]  pid... kill -l [signal] ...

  3. Flowable学习入门

    一.Flowable简介 1.Flowable是什么 Flowable是一个使用Java编写的轻量级业务流程引擎.Flowable流程引擎可用于部署BPMN 2.0流程定义(用于定义流程的行业XML标 ...

  4. [leetcode]355. Design Twitter设计实现一个微博系统

    //先定义一个数据结构,代表一条微博,有两个内容:发布者id,微博id(代表微博内容) class TwitterData { int userId; int twitterId; public Tw ...

  5. libzip开发笔记(一):libzip库介绍、编译和工程模板

      前言   Qt使用一些压缩解压功能,选择libzip库,libzip库比较原始,也是很多其他库的基础支撑库.   libzip   libzip是一个C库,用于读取,创建和修改zip档案.可以从数 ...

  6. 如何在K8S中优雅的使用私有镜像库 (Docker版)

    前言 在企业落地 K8S 的过程中,私有镜像库 (专用镜像库) 必不可少,特别是在 Docker Hub 开始对免费用户限流之后, 越发的体现了搭建私有镜像库的重要性. 私有镜像库不但可以加速镜像的拉 ...

  7. Centos7无网络下安装mysql5.7——mysql-rpm安装

    本教程指将mysql安装到系统默认目录下,如想自定义修改目录,请在rpm安装时自行修改: rpm -ivh --prefix= /opt xxx.rpm #将xxx.rpm安装到/opt下 一.下载m ...

  8. 翻译 | 30个 Python3 的最佳实践,技巧和窍门

    1.使用 Python3 如果你关注 Python 的话,应该会知道 Python 2 已经于今年(2020 年)1 月 1 日正式弃用了.这份教程的很多例子都是只支持 Python 3 的,如果你还 ...

  9. HarmonyOS(LiteOs_m) 官方例程移植到STM32初体验

    HarmonyOS(LiteOs_m) 官方例程移植到STM32初体验 硬件平台 基于正点原子战舰V3开发板 MCU:STM32F103ZET6 片上SRAM大小:64KBytes 片上FLASH大小 ...

  10. 日常ie兼容问题(持续整理)

    1.关于new Date()格式为何要转成y/m/d格式 IE不会识别时间状态为"y-m-d"的形式,如果获取的new Date("2020-05-01") 那 ...