首页 何问起 前端特效 htbtn-4 闪电 使用方法
摘要: using System.Text.RegularExpressions;using System.Text;/// <summary>/// 字符串长度(按字节算)/// </summary>/// <param name="str"></param>/// <returns></returns>static int StrLength(string str){ int len = 0; byte[] b; for (int i = 0; i < str.Length; i++) { b = E 阅读全文
posted @ 2012-09-14 18:14 roucheng 阅读(2179) 评论(0) 推荐(0) 编辑