会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Sign_Black
博客园
首页
博问
闪存
新随笔
订阅
管理
上一页
1
···
3
4
5
6
7
2016年2月23日
js验证textarea里面是否有换行符
摘要: var reg = /[\r\n]+/g;if(reg.test(reason)){ PopAlert("不能有换行符!"); return;}
阅读全文
posted @ 2016-02-23 18:09 Sign_Black
阅读(2215)
评论(0)
推荐(0)
编辑
2015年11月27日
js 正则验证url
摘要: var reg = '[a-zA-z]+://[^\s]*';//正则var url = $('#add [name=notice_url]').val();if(url.length >0){ var reg_test = new RegExp(reg); var result = re...
阅读全文
posted @ 2015-11-27 14:27 Sign_Black
阅读(1696)
评论(0)
推荐(0)
编辑
2015年11月18日
markdown
摘要: 格式化.md文件,生成带目录.md doctoc ~.md生成对应html markdown -o 公告与消息.html 公告与消息.md
阅读全文
posted @ 2015-11-18 13:25 Sign_Black
阅读(124)
评论(0)
推荐(0)
编辑
2015年9月29日
php解决中文乱码
摘要: $fileType = mb_detect_encoding($strData , array('UTF-8','GBK','LATIN1','BIG5','CP936')) ;//可以在此处添加编码格式$str = "";if( $fileType != 'UTF-8'){ $str = m...
阅读全文
posted @ 2015-09-29 11:45 Sign_Black
阅读(274)
评论(0)
推荐(0)
编辑
2015年9月28日
html文本框和按钮这些点击时不显示边框的光晕
摘要: 直接在样式加:focus{outline:0;}这样子就可以了
阅读全文
posted @ 2015-09-28 09:01 Sign_Black
阅读(605)
评论(0)
推荐(0)
编辑
2015年9月23日
js去掉字符串前后以及中间的空格
摘要: p['bank_card'] = p['bank_card'].replace(/(^\s+)|(\s+$)/g,"");p['bank_card'] = p['bank_card'].replace(/\s/g,"");
阅读全文
posted @ 2015-09-23 16:03 Sign_Black
阅读(422)
评论(0)
推荐(0)
编辑
2015年9月15日
用ssh-key-gen 在本地主机上创建公钥和密钥
摘要: 用ssh-key-gen 在本地主机上创建公钥和密钥ligh@local-host$ ssh-keygen -t rsa
阅读全文
posted @ 2015-09-15 00:02 Sign_Black
阅读(2367)
评论(0)
推荐(0)
编辑
2015年9月14日
ubuntu触摸板关闭开启
摘要: sudormmodpsmouse#用来禁用触摸板sudomodprobepsmouse#用来启用触摸板
阅读全文
posted @ 2015-09-14 12:06 Sign_Black
阅读(214)
评论(0)
推荐(0)
编辑
2015年8月6日
php正则处理html标签
摘要: //i
阅读全文
posted @ 2015-08-06 14:15 Sign_Black
阅读(125)
评论(0)
推荐(0)
编辑
上一页
1
···
3
4
5
6
7