Skip to content

Commit

Permalink
update: 将“前端面试”专题单独移到另一个仓库
Browse files Browse the repository at this point in the history
  • Loading branch information
qianguyihao committed Jul 21, 2022
1 parent bdd4c74 commit 731e7a1
Show file tree
Hide file tree
Showing 75 changed files with 2 additions and 5,784 deletions.
3 changes: 1 addition & 2 deletions 04-JavaScript基础/41-事件委托.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ publish: true
event = event || window.event;
// e.target 表示:触发事件的对象
//如果触发事件的对象是我们期望的元素,则执行否则不执行
//如果触发事件的对象是我们期望的元素,则执行;否则不执行
if (event.target && event.target.className == 'link') {
// 或者写成 if (event.target && event.target.nodeName.toUpperCase() == 'A') {
console.log('我是ul的单击响应函数');
Expand Down Expand Up @@ -101,4 +101,3 @@ publish: true




2 changes: 1 addition & 1 deletion 14-前端性能优化/02-浏览器渲染机制.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ PS:该DTD包含所有的HTML元素和属性,但包括展示性的和弃用

浏览器的渲染过程非常复杂,面试时找重点说就行,不然太耗时间。如何快速简洁地描述清楚,是关键。来看看下面这张图。

![](http://img.smyhvae.com/20180310_1257.png)
![](https://img.smyhvae.com/20180310_1257.png)

渲染过程中,涉及到以下几个概念:

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 731e7a1

Please sign in to comment.