摘要:
http://www.jianshu.com/p/2769efeaa10a 构建: vue init webpack vuetest vue init <模板> <自定义的项目名称> 构建: http://www.jianshu.com/p/2769efeaa10a 阅读全文
摘要:
document.getElementById("fullvoide").onclick=function(){ var el = document.documentElement; var rfs = el.requestFullScreen || el.webkitRequestFullScre 阅读全文
摘要:
(function() { // Private array of chars to use var CHARS = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'.split(''); Math.uuid = fun 阅读全文
摘要:
<div id="demo1"> <ul class="panel-list"> <li class="panel-item"></li> <li class="panel-item"></li> <li class="panel-item"></li> <li class="panel-item" 阅读全文
摘要:
浏览器由于安全限制采用的同源策略(即JavaScript或Cookie只能访问同域下的内容) 但在项目我们可能需要跨域请求。 跨域 大家可能会说 jquery ajax的jsonp就行了 但这只是局限于get 对于大量数据需要采用post的时候 就得换个办法了 <form action="XXX/c 阅读全文
摘要:
config.maxScroll = $('.scroll-x table').outerWidth() - $('.scroll-x').outerWidth(); config.speed = 30; $('.scroll-x')[0] ? $('.scroll-x')[0].onmousewh 阅读全文
摘要:
一:新的对象创建方式 参数可以是某个对象的原型 这样 jack 就有了 Person的原型属性 二:Object.seal 让一个对象密封,并返回被密封后的对象。 1: 不能添加新属性 2: 不能删除已有属性 3: 能修改属性的值 4: 不能修改其可枚举性、可配置性、可写性 修改其可枚举 失败 en 阅读全文
摘要:
有人会说这有什么好些的 foo['a'] = 'b'; foo.a = 100; 这太简单了这里介绍下 Object.defineProperty 因为它能设置 属性的权限例如 我们需要将 foo 对象的某个属性设置为 不可枚举var foo = { name: 'tom' };Obje... 阅读全文
摘要:
在某些应用场景中 可能有需要用到继承 js的原型可以实现类的继承var Person= function(){ this.name = 'tom' ; this.age = 12 ;} ;Person.prototype.getName = function(){ return ... 阅读全文