事件流:描述的是在页面中接收事件的顺序 事件冒泡:由最具体的元素接收,然后逐级向上传播至最不具体的元素的节点 事件捕获:最不具体的节点先接收事件,而最具体的几点应该是最后接收事件 例如: <!DOCTYPE html> <…
Leave a Comment月度归档: 2019 年 7 月
git fetch –all git reset –hard origin/master git pull # 可以省略 git fetch 指令是下载远程仓库最新内容,不做合并 git reset 指令把HEAD指向master最新版…
Leave a Comment用iPhone或iPad访问时,长数字字符串会被Safari自动将数字识别成电话号码 解决这一问题,需在head标签内添加如下代码: <meta name=”format-detection” content=”telephone=n…
Leave a CommentPHP有5种运行模式,常见的有4种: 1. cgi 协议模式 cgi模式:通用网关接口(Common Gateway Interface),它允许web服务器通过特定的协议与应用程序通信 调用原理大概为:用户请求 -> Web服务器接…
Leave a Comment初始化新项目 yarn init 添加依赖包 yarn add [package] yarn add [package]@[version] yarn add [package]@[tag] 将依赖项添加到不同依赖项类别 分别添加到 dev…
Leave a CommentAction Action 是把数据从应用传到 store 的有效载荷。它是 store 数据的唯一来源。 Reducer Reducers 指定了应用状态的变化如何响应 actions 并发送到 store 的。 Store Store …
Leave a Comment