
前端
文章平均质量分 56
iteye_8164
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
【原创】css position 总结
参考了http://www.kei.tw/blogger/39-5.html position :static relative absolute fixed static 不可重叠,忽略坐标 relative 无坐标类似static,有坐标则是相对坐标,相对其本应该处得位置,正数为 下 右 方向。 absolute 默认重叠,坐标是相对于其parent的边框距离,...原创 2011-08-15 15:17:12 · 151 阅读 · 0 评论 -
[转]HD9001: 各浏览器对 URI 中非 ASCII 字符的处理有差异
作者:孙东国标准参考URI 的组成如下所示: foo://example.com:8042/over/there?name=ferret#nose \_/ \______________/\_________/ \_________/ \__/ | | | | ...原创 2011-08-25 15:56:17 · 301 阅读 · 0 评论 -
jquery contenttype 的变化
jquery 1.4 的contenttype 默认是contentType: 'application/x-www-form-urlencoded;charset=UTF-8',1.6变为contentType: 'application/x-www-form-urlencoded',如果不在$.ajax 中加contentType: 'app...2011-09-15 12:31:46 · 400 阅读 · 0 评论 -
windows 文件名 正则表达式
一个简单的windows 文件名 正则表达式,不检查文件名如 con 等 ^[^/\\\:\*\?\"\<\>\|\\]{1,255}$ 参考了http://blog.youkuaiyun.com/lsj19830812/article/details/4137003...原创 2011-09-30 17:14:16 · 708 阅读 · 0 评论 -
velocity 笔记
Single quotes will ensure that the quoted value will be assigned to the reference as is. Double quotes allow you to use velocity references and directives to interpolate, such as "Hello $name", where ...2012-02-24 13:54:18 · 180 阅读 · 0 评论