
前端
fendou4533
这个作者很懒,什么都没留下…
展开
-
推荐几款Web前端框架
转 http://www.w3cfuns.com/article-760-1.html转载 2014-05-07 09:30:39 · 934 阅读 · 0 评论 -
判断字符串所占的字节数
//判断字符串所占的字节数function GetCharLength(str) { var iLength = 0; //记录字符的字节数 for (var i = 0; i < str.length; i++) //遍历字符串中的每个字符 { if (str.charCodeAt(i) > 255) //如果当前字符的编码大于255原创 2014-05-09 11:57:22 · 7296 阅读 · 0 评论 -
为 Bootstrap 添加更多自定义图标
转 http://www.lovelucy.info/custom-icons-for-twitter-bootstrap.html转载 2014-06-25 15:19:21 · 2305 阅读 · 0 评论 -
开源中最好的Web开发的资源
转 http://blog.sina.com.cn/s/blog_4d8713560101a6ht.html转载 2014-06-16 10:12:06 · 1025 阅读 · 0 评论 -
js正则函数match、exec、test
转 http://mogo4157.blog.163.com/blog/static/82790348201332543815135/转载 2014-07-08 14:57:35 · 666 阅读 · 0 评论 -
JS Call()与Apply()
转 http://www.cnblogs.com/itstone/archive/2012/07/23/call.htmlECMAScript规范给所有函数都定义了Call()与apply()两个方法,call与apply的第一个参数都是需要调用的函数对象,在函数体内这个参数就是this的值,剩余的参数是需要传递给函数的值,call与apply的不同就是call传的值可以是任意的,而转载 2014-07-08 15:04:11 · 600 阅读 · 0 评论