会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
努力的样子
博客园
首页
新随笔
联系
管理
订阅
2022年6月24日
JSON.parse(JSON.stringify())
摘要: 1、如果obj里面存在时间对象,JSON.parse(JSON.stringify(obj))之后,时间对象变成了字符串。 2、如果obj里面有RegExp/Error对象,则序列化的结果降得到空对象。 3、如果obj里有函数,undedined,则序列化的结果会把函数,undefined丢失。 4
阅读全文
posted @ 2022-06-24 14:59 努力的样子
阅读(29)
评论(0)
推荐(0)
编辑
2019年5月14日
兼容苹果手机
摘要: // 兼容iphonex @media only screen and (device-width:375px) and (device-height:812px) and (-webkit-device-pixel-ratio:3) { .iphonex{padding-top:88px;padd
阅读全文
posted @ 2019-05-14 15:28 努力的样子
阅读(246)
评论(0)
推荐(0)
编辑
改变input placeholder 的颜色(转)
摘要: input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { color: #b8c4ce!important; } input:-moz-placeholder, textarea:-moz-placeholder
阅读全文
posted @ 2019-05-14 15:07 努力的样子
阅读(762)
评论(0)
推荐(0)
编辑
自定义事件(CustomEvent)和 触发自定义事件方法
摘要: let myEvent = new CustomEvent("newMessage", { detail: { message: "davidwalsh" }, bubbles: true, cancelable: false })自定义userLogin事件,这个浏览器自带的click事件是一样的
阅读全文
posted @ 2019-05-14 14:41 努力的样子
阅读(2015)
评论(0)
推荐(1)
编辑
2019年1月16日
js文件下载插件介绍和使用方法 download.js(转)
摘要: 转:https://blog.csdn.net/silence_pinot/article/details/81018452 知识点引用来自于: http://danml.com/download.html 可以直接传下载地址 使用 download(this.logUrl) 在前端想要生成txt或
阅读全文
posted @ 2019-01-16 15:24 努力的样子
阅读(5367)
评论(0)
推荐(0)
编辑
校验是否是json格式(转)
摘要: function isJson(str) { if (typeof str == 'string') { try { var obj=JSON.parse(str); if(typeof obj == 'object' && obj ){ return true; }else{ return fal
阅读全文
posted @ 2019-01-16 15:08 努力的样子
阅读(807)
评论(0)
推荐(0)
编辑
2018年11月8日
angular路由高亮之RouterLinkActive
摘要: <ul nz-menu [nzMode]="'inline'" nzTheme='dark' [nzInlineCollapsed]="isCollapsed"> <li nz-submenu *ngFor="let parent of menus" [nzOpen]="rla2.isActive"
阅读全文
posted @ 2018-11-08 13:21 努力的样子
阅读(2572)
评论(0)
推荐(0)
编辑
2018年10月26日
angualr2 如何分别注入父子组件
摘要: 在父组件中注入子组件 @ViewChild(BaUploadComponent) private baUpload: BaUploadComponent; 在子组件中注入父组件 @Inject(forwardRef(() => DetailsComponent)) private _parent:
阅读全文
posted @ 2018-10-26 19:17 努力的样子
阅读(231)
评论(0)
推荐(0)
编辑
2018年9月27日
简单实现angular2组件双向绑定(转)
摘要: 直接献上代码 父组件 import { Component, OnInit } from '@angular/core'; @Component({ selector: 'ngx-input', templateUrl: ` <p>双向绑定</p> {{pvalue}} <input type="r
阅读全文
posted @ 2018-09-27 20:02 努力的样子
阅读(809)
评论(0)
推荐(0)
编辑
2018年7月25日
工作中自己用到的正则归纳
摘要: 1,只支持整数或小数 /^-?[1-9]+\d*([.]{1}[0-9]+){0,1}$/.test(string)&&/^-?0(\.\d*)?$/.test(string) 2,输入正确的ip地址 /^(\d|[1-9]\d|1\d{2}|2[0-5][0-5])\.(\d|[1-9]\d|1\
阅读全文
posted @ 2018-07-25 16:31 努力的样子
阅读(180)
评论(0)
推荐(0)
编辑
下一页
公告