MHlife on GitHub

javascript中全方位判断类型

返回这个数据的类型 function isType(obj) { return Object.prototype.toString.call(obj).slice(8, -1); } console.log(isType(date)); var n; // [object Undefined] 不兼容IE8及以下,推荐使用ty

- 阅读全文 -

web前端学习Vue-进阶篇

web前端学习网址进阶篇以vue为基础,以脚手架为核心Vue.jshttps://cn.vuejs.org/Vue.js 全家桶Vue-Cli 脚手架https://cli.vuejs.org/zh/Vue-Routerhttps://router.vuejs.org/zh/Vuexhttps://vuex.vuejs.org/zh/guide/Axioshttps://www.npmjs.com

- 阅读全文 -

js中伪数组转为数组几个方法

Es5的方法来做 var dom = document.getElementsByClassName("demo") var arr = Array.prototype.slice.call(dom) // Es5方法 我们也可以使用Es6中的Array.from方法var dom = document.getElementsByClassName("d

- 阅读全文 -