随笔分类 - 实用的第三方开发包
摘要:1.http://www.jiathis.com/分享按钮,稳步提升您的网站流量。提供分享到微博、QQ、人人等代码...通过访客不断的分享行为,提升网站的优质外链、增加社会化流量、带来更多的用户!2.http://www.zhangxinxu.com/study/js/jquery.scrollLo...
阅读全文
摘要:html: 用户注册 用户名 密码 ...
阅读全文
摘要: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
阅读全文
摘要:1.动软Codematic2.msi2.CodeSmith
阅读全文
摘要:汉字转换成拼音实现自动检索: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即
阅读全文