摘要:
http://code.google.com/p/jquery-easyui/source/browse/trunk#trunk/src 阅读全文
随笔档案-2010年09月
谷歌浏览器和IE下new Date()注意的一个小地方
2010-09-27 13:48 by cnb_mtime, 950 阅读, 收藏, 编辑
摘要:
今天子啊谷歌浏览器运行了一下以前的程序,发现new Date()显示的不一样:例如谷歌浏览器中显示:110年5月18日,在IE浏览器中显示:2010年5月18日。这个问题是因为javascript 的兼容性问题var now = new date();var year = now.getYear();在 大部分非IE 里面 getYear 返回的是 "当前年份-1900" 的值 , 这个根据Jav... 阅读全文
orcle blob转换
2010-09-27 11:11 by cnb_mtime, 300 阅读, 收藏, 编辑
摘要:
public static string BlobToString(Object blob) { string _str = ""; if (blob != null) { byte[] _ff = (byte[])(blob); _str = System.Text.Encoding.Unicode.GetString(_ff); } return _str; } public static b... 阅读全文
装ie9之前禁止更新的解决办法,我用盗版我无耻--|||
2010-09-18 08:56 by cnb_mtime, 348 阅读, 收藏, 编辑
摘要:
[代码]将上面的存为批处理就行IE9 Beta,我用盗版我无耻--||| 阅读全文