2020年10月12日

js-web-api

摘要: DOM Document Object Model文档对象模型 DOM本质:js对象 dom树是由各种各样的节点构成,获取的元素其实是DOM树中一个元素节点。 在 HTML DOM (Document Object Model) 中, 每一个元素都是 节点对象(Node object)。所有html 阅读全文

posted @ 2020-10-12 16:33 章画 阅读(123) 评论(0) 推荐(0) 编辑

js补充

摘要: arguments 实参类数组列表对象 function fn() { //arguments实参列表 转数组的三种方式 console.log(arguments); console.log(Array.prototype.slice.call(arguments)); console.log(A 阅读全文

posted @ 2020-10-12 09:47 章画 阅读(57) 评论(0) 推荐(0) 编辑

导航