摘要: var hkey_root, hkey_path, hkey_keyhkey_root = "HKEY_CURRENT_USER"hkey_path = "\\Software\\Microsoft\\Internet Explorer\\PageSetup\\"//设置网页打印的页眉页脚为空 ... 阅读全文
posted @ 2014-11-21 11:49 奇风★逍遥 阅读(190) 评论(0) 推荐(0) 编辑
摘要: function getQueryStringByName(name) { var result = location.search.match(new RegExp("[\?\&]" + name + "=([^\&]+)", "i")); if (result == null || ... 阅读全文
posted @ 2014-11-21 11:44 奇风★逍遥 阅读(790) 评论(0) 推荐(0) 编辑
摘要: //Json 数据年月日 返回 直接传入参数 如/Date(1379433600000)/function GetDate(date) { if (date == null) return null; var index = 0; if (date < 0) ... 阅读全文
posted @ 2014-11-21 11:43 奇风★逍遥 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 取出数组a中数组b没有的数据:结果是1,3 int[] a = { 1, 2, 3, 4 }; int[] b = { 2, 4 }; string aa = ""; for (int i = 0; i < a... 阅读全文
posted @ 2014-11-21 11:28 奇风★逍遥 阅读(370) 评论(0) 推荐(0) 编辑