摘要: 1 function StrToDateTime(value) 2 { 3 if (value) 4 { 5 return (new Date(Date.parse(value.replace(/-/g, "/")))); 6 } 7 return value; 8 } 阅读全文
posted @ 2018-04-09 16:20 FranKie_Ming 阅读(4103) 评论(0) 推荐(0) 编辑
摘要: 1 window.onbeforeunload = function () { 2 var n = window.event.screenX - window.screenLeft; 3 var b = n > document.documentElement.scrollWidth - 20; 4 if (b && window.event.clientY < 0 || window.... 阅读全文
posted @ 2018-04-09 16:14 FranKie_Ming 阅读(280) 评论(0) 推荐(0) 编辑
摘要: 在sql工具中测试正常,放到代码中出现 “ORA-00911: 无效字符” 错误时,请检查sql语句是否有分号。 阅读全文
posted @ 2018-01-04 11:18 FranKie_Ming 阅读(606) 评论(0) 推荐(0) 编辑
摘要: 1 //获取地址参数 2 function GetQueryString(name) { 3 var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); 4 var r = window.location.search.substr(1).match(r... 阅读全文
posted @ 2017-12-04 20:12 FranKie_Ming 阅读(141) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2017-12-04 20:10 FranKie_Ming 阅读(4) 评论(0) 推荐(0) 编辑