摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2021-12-10 19:29 ๑Secret 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-12-10 16:52 ๑Secret 阅读(27) 评论(0) 推荐(0) 编辑
摘要: delete 运算符删除对以前定义的对象属性或方法的引用。 不可以删除的如下: 1通过var定义的变量 var a=1;delete a//false 2 声明后的函数 function a(){};delete a//false 3 prototype定义的属性 a.prototype.b=2;d 阅读全文
posted @ 2021-12-10 16:45 ๑Secret 阅读(420) 评论(0) 推荐(0) 编辑