会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
灏月天染
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
7
8
···
14
下一页
2020年1月17日
前端开发规范
摘要: 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)
2019年12月27日
单例模式和策略模式
摘要: 一个类返回一个实例,再次创建时调用直接返回 class CreateUser{ constructor(name){ this.name = name; this.getName(); } getName(){ return this.name; } } const ProxyModel = ( (
阅读全文
posted @ 2019-12-27 15:08 灏月天染
阅读(233)
评论(0)
推荐(0)
jsp的九大内置对象+四大作用域
摘要: 1.request是httpServletRequest的对象,代表发送的请求信息 2.response是httpServletResponse的对象,代表响应请求返回的信息 3.session会话是用来保存客户登录信息和操作相关的状态 4.application是用来将信息保存至服务器上,服务器不
阅读全文
posted @ 2019-12-27 11:17 灏月天染
阅读(133)
评论(0)
推荐(0)
2019年10月30日
instanceof读解
摘要: 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)
2019年4月28日
vue学习
摘要: 需要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)
2019年4月1日
flexbuilder 开发工具
摘要: https://www.cnblogs.com/xuling/archive/2010/02/15/1668580.html
阅读全文
posted @ 2019-04-01 16:13 灏月天染
阅读(214)
评论(0)
推荐(0)
2019年3月22日
正则表达式匹配所有非法字符
摘要: var regEx = new RegEx("[`~!@#-_$%^&*()+=|{}':;',\\[\\]<>/?~!@#¥%……&*()——+|{}【】《》 ‘;:”“’。,、?]") regEx.test(需要校验字符)
阅读全文
posted @ 2019-03-22 12:03 灏月天染
阅读(3925)
评论(0)
推荐(0)
2019年2月15日
前端必备 CSS Sprites雪碧图生成工具
摘要: https://www.jianshu.com/p/84d7aa090ba1
阅读全文
posted @ 2019-02-15 09:56 灏月天染
阅读(111)
评论(0)
推荐(0)
2019年1月8日
webstorm调试
摘要: 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)
2018年12月5日
jquery.string.js
摘要: /** * 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
下一页
公告