上一页 1 2 3 4 5 6 7 8 ··· 14 下一页
摘要: https://yq.aliyun.com/articles/617716前端代码规范 css规范:(不应拘泥于规范,应在规范上加以延伸) 内容:content 标题:title 导航:nav 侧边栏:sidebar 左中右:left,center,right 1.字体颜色,使用颜色名称或者16进制 阅读全文
posted @ 2020-01-17 15:19 灏月天染 阅读(102) 评论(0) 推荐(0)
摘要: 一个类返回一个实例,再次创建时调用直接返回 class CreateUser{ constructor(name){ this.name = name; this.getName(); } getName(){ return this.name; } } const ProxyModel = ( ( 阅读全文
posted @ 2019-12-27 15:08 灏月天染 阅读(233) 评论(0) 推荐(0)
摘要: 1.request是httpServletRequest的对象,代表发送的请求信息 2.response是httpServletResponse的对象,代表响应请求返回的信息 3.session会话是用来保存客户登录信息和操作相关的状态 4.application是用来将信息保存至服务器上,服务器不 阅读全文
posted @ 2019-12-27 11:17 灏月天染 阅读(133) 评论(0) 推荐(0)
摘要: function instance(l,r){ let 0 = r.prototype; let v = l.__proto__; while(true){ if(v null){ return false; } if(v 0){ return true; } v = l.__proto__; } 阅读全文
posted @ 2019-10-30 16:43 灏月天染 阅读(155) 评论(0) 推荐(0)
摘要: 需要nodejs和npm的支持 npm配置文件需要注意下载文件的位置 注意事项:npm install 需要进入到项目中运行 vue init webpack [项目名]需要到项目外层文件夹执行 https://www.runoob.com/vue2/vue-start.html vue打造多页面应 阅读全文
posted @ 2019-04-28 17:16 灏月天染 阅读(142) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/xuling/archive/2010/02/15/1668580.html 阅读全文
posted @ 2019-04-01 16:13 灏月天染 阅读(214) 评论(0) 推荐(0)
摘要: var regEx = new RegEx("[`~!@#-_$%^&*()+=|{}':;',\\[\\]<>/?~!@#¥%……&*()——+|{}【】《》 ‘;:”“’。,、?]") regEx.test(需要校验字符) 阅读全文
posted @ 2019-03-22 12:03 灏月天染 阅读(3925) 评论(0) 推荐(0)
摘要: https://www.jianshu.com/p/84d7aa090ba1 阅读全文
posted @ 2019-02-15 09:56 灏月天染 阅读(111) 评论(0) 推荐(0)
摘要: webstorm调试nodejs https://www.cnblogs.com/dogharry/p/4335157.html webstorm调试js https://www.cnblogs.com/tzdy/p/7930462.html 阅读全文
posted @ 2019-01-08 17:33 灏月天染 阅读(159) 评论(0) 推荐(0)
摘要: /** * jquery.string - Prototype string functions for jQuery * version: 1.1.0 * (c) 2008-2011 David E. Still (http://stilldesigning.com) * Original Pro 阅读全文
posted @ 2018-12-05 16:20 灏月天染 阅读(191) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 14 下一页