自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(10)
  • 收藏
  • 关注

转载 js函数

1.arguments对象 1 在函数代码中,使用特殊对象 arguments,开发者无需明确指出参数名,就能访问它们。 2 function sayHi() { 3 console.log(arguments) 4 if (arguments[0] == "bye") { 5 return; 6 }...

2019-09-25 17:17:00 98

转载 Js apply方法详解

https://www.cnblogs.com/chenhuichao/p/8493095.html转载于:https://www.cnblogs.com/qxp140605/p/11239310.html

2019-09-25 10:30:00 92

转载 hexo+coding搭建个人博客

1.实例1 https://blog.csdn.net/q563730343/article/details/788719802 https://www.jianshu.com/p/b2433a2703c62.git上传代码到coding 1 在coding上创建个人仓库 2 配置公钥 3 在本地创建项目文件 4 在项目下:git bash he...

2019-09-25 00:23:00 130

转载 hexo+码云搭建个人博客

1.示例1 https://blog.csdn.net/weidong_y/article/details/909047812 https://www.jianshu.com/p/13f5e4d7099d2.hexo安装1 npm install hexo-cli -g2 hexo init blog3 cd blog4 npm install...

2019-09-24 22:57:00 212

转载 git+Github上传代码

1 echo "# update" >> README.md2 git init3 git add README.md4 git commit -m "first commit"5 git remote add origin git@github.com:earwind/update.git6 ...

2019-09-23 23:13:00 53

转载 hexo+github搭建个人博客

搭建示例:https://blog.csdn.net/grave2015/article/details/79961843、https://www.cnblogs.com/liuxianan/p/build-blog-website-by-hexo-github.html、https://blog.csdn.net/sinat_37781304/article/details/82...

2019-09-20 00:20:00 136

转载 vue-路由篇

1.静态路由<router-link to="/page1">静态路由跳转->Page1</router-link>2.动态路由传参在router中的路由映射{ path: '/login/:id/:name',name: 'Login',component: Login }方法一<router-link :...

2019-09-19 15:44:00 81

转载 iview使用中出现的问题

1.vue中iview的标签报错 x-invalid-end-tag,由为标签是闭合的这是vetur中eslint的问题,在vscode菜单中,文件->首选项->设置找到 “vetur.validation.template”: true 将其改为false,就可关闭eslint的检查,错误消失2.vue报There are multiple mo...

2019-09-19 09:50:00 357

转载 flex产生水平滚动条

.box li,.box2 li{ width: 100px; height: 30px; display: inline-block; background: red;}.box li:nth-child(2n),.box2 li:nth-child(2n){ background: blue;} .box{ width: 300px;...

2019-09-18 15:59:00 784

转载 js中的类

// es5中的类// a.最简单的类 // function Person(){ // this.name = 'zhangsan'; // this.age = 18; // } // var p = new Person(); // console.log(p.anme);// b.构造函数...

2019-09-17 00:15:00 661

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除