# web 应用

https://www.lanqiao.cn/contests/cup-s1/challenges/

https://blog.csdn.net/m0_51969330/article/details/124107668

# HTML 和 CSS

1672454872912

1672454901466

1672455626171

# 知识补充

事件冒泡和事件捕获:https://zhuanlan.zhihu.com/p/100831300

在 promise 中,创建对象时的 resolve 和 reject 的作用的是什么?根据调用过程,then 中的方法只是使用到了 resolve 和 reject 的参数

在 new 出一个 promise 时,里面的函数就已经执行,并非有 then 时才执行。

待看的: https://www.w3cschool.cn/escript6/escript6-qwg737fd.html#:~:text=prototype 对象的 constructor 属性,直接指向 “类” 的本身,这与 ES5, 的行为是一致的。 Point.prototype.constructor %3D%3D%3D Point %2F%2F true

https://juejin.cn/post/6894240129364426766

先把省赛题给看一遍,基本把握怎么考的什么内容。然后再深入学

# 有关删除子元素:

http://c.biancheng.net/view/5900.html#:~:text=JavaScript removeChild () 方法可以从子节点列表中删除某个节点。. 用法如下:. nodeObject.removeChild (node) 其中参数,node 为要删除节点。. 如果删除成功,则返回被删除节点;如果失败,则返回 null。. 当使用 removeChild () 方法删除节点时,该节点所包含的所有子节点将同时被删除。.