
css
iteye_3609
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
isIpAddress javascript web frontend
function isIpAddress(str) { thePat = /^(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])(\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])){3}$/; if(thePat.test(str)){ return true; ...原创 2012-07-24 17:17:18 · 202 阅读 · 0 评论 -
knockoutjs readonly 绑定扩充
knockoutjs readonly 绑定扩充 使用例子 <input type="text" data-bind="readonly:aaValue()==2" /> 扩展代码 ko.bindingHandlers.readonly = { init: function(element, valueAccessor) { if(element.tagNam...原创 2012-04-28 11:02:56 · 413 阅读 · 0 评论 -
share a free hex edit
free hex edit tools原创 2012-05-15 11:30:56 · 130 阅读 · 0 评论 -
ie8 下载提示网络连接不上问题的解决
简单来说: IE8下载缓存有问题 加入header控制缓存可以解决这个问题 header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); 是从下面地址挖出来的。 http://blog.csdn.net/fafa211/article/details/5801371 ...原创 2012-05-15 14:22:03 · 332 阅读 · 0 评论 -
PlayFramework 1.2.3 中 配置https
http://www.playframework.org/documentation/1.1.1/releasenotes-1.1#https HTTPS support The built-in server now supports the HTTPS protocol. You can of course use it in production if you want. I...原创 2012-05-16 09:59:31 · 553 阅读 · 0 评论 -
IE不刷新页面怎么办
Select Tools &gt;&gt; Internet Options. Click the Settings button in Browsing History. Select the Every time I visit the webpage radio button. Click OK to close the Settings dialog. Click...2012-12-13 16:06:01 · 248 阅读 · 0 评论