``` beforeCreate :el 和 data 并未初始化 created:完成了 data 数据的初始化,el没有 beforeMount :完成了 el 和 data 初始化 mounted :完成了了挂载 beforeUpdate updated activated deactivated beforeDestroy destroyed errorCaptured ```
``` Document div{ border: 1px dotted #ddd;margin: 5px; } {{msg}} count:{{count}} v-on @click 加值 ...
```javascript /** * [autoIframeHeight iframe自动适应高度] * @Author Jerry * @DateTime 2017-05-06 * @Example eg: * @param {[type]} id [description] * @return {[type]} [description...
//jQuery获取包括当前元素的HTML $("#current").prop("outerHTML"); //其它用法 $("input").prop("disabled", false);//只读 $("input").prop("checked",&nb...
键盘控制应用范围非常广泛,比如快捷键控制页面的滚动;在填写表单时候,限制输入内容;或者是屏蔽复制、粘贴、退后等功能。$(window).keydown(function(event){ switch (event.which) { case(74): //J键  ...
<script type="text/javascript"> var margintop = $("#header").offset().top //var marginleft = $("#header_cont").offset().left; //...
1.查看版本 npm -v 2.安装模块 a.全局安装 npm install -g b.本地安装 npm install c.在项目中安装保存到package.json中 npm install --save-dev 3.查看安装信息 a.查看所有安装模块 npm list -g b.查看...
| 目录/文件 | 说明 | | :----------- | :----------------------------------------------------------- | | build | 项目构建(webpack)相关代码 ...
``` # 全局安装 vue-cli $ npm install --global vue-cli # 创建一个基于 webpack 模板的新项目 $ vue init webpack my-project # 这里需要进行一些配置,默认回车即可 This will install Vue 2.x version of the template. For Vue 1.x use: vue init...
临时修改 npm --registry https://registry.npm.taobao.org install express 永久修改 npm config set registry https://registry.npm.taobao.org npm config get registry //查看上面的语句是否修改成功 使用cnpm npm install -g cnpm --re...