随笔分类 -  实用的第三方开发包

摘要:1.http://www.jiathis.com/分享按钮,稳步提升您的网站流量。提供分享到微博、QQ、人人等代码...通过访客不断的分享行为,提升网站的优质外链、增加社会化流量、带来更多的用户!2.http://www.zhangxinxu.com/study/js/jquery.scrollLo... 阅读全文
posted @ 2014-05-05 17:08 无处安放的青春 阅读(282) 评论(0) 推荐(0)
摘要:http://studiostyl.es/ 阅读全文
posted @ 2013-12-20 13:09 无处安放的青春 阅读(249) 评论(0) 推荐(0)
摘要:html: 用户注册 用户名 密码 ... 阅读全文
posted @ 2013-08-29 14:23 无处安放的青春 阅读(434) 评论(0) 推荐(0)
摘要:jQuery.validate 的正则验证功能,包括手机号码、电话号码、邮政编码、QQ号码、IP地址、字母和数字、中文的验证等。手机号码验证以下为引用内容:jQuery.validator.addMethod("mobile", function(value, element) {var length = value.length;var mobile = /^(((13[0-9]{1})|(15[0-9]{1}))+\d{8})$/return this.optional(element) || (length == 11 && mobile.test(v 阅读全文
posted @ 2013-08-23 12:28 无处安放的青春 阅读(458) 评论(0) 推荐(0)
摘要:1.动软Codematic2.msi2.CodeSmith 阅读全文
posted @ 2013-08-20 20:46 无处安放的青春 阅读(224) 评论(0) 推荐(0)
摘要:汉字转换成拼音实现自动检索:Visual Studio International Pack案例:StringBuilder sbPy = new StringBuilder();String txt = "你好";foreach(char ch in txt){ ChineseChar chChar = new ChineseChar(ch); if(chChar.Pinyins.Count > 0) { sbPy.Append(chChar.Pinyins[0].Substring(0,chChar.Pinyins[0].Length)); }}//输入sbPy即 阅读全文
posted @ 2013-08-19 21:53 无处安放的青春 阅读(293) 评论(0) 推荐(0)