上一页 1 ··· 8 9 10 11 12 13 14 15 下一页
摘要: UPDATE Person SET Address = 'Zhongshan 23', City = 'Nanjing' WHERE LastName = 'Wilson' 阅读全文
posted @ 2016-04-14 01:48 夜深人静123 阅读(985) 评论(0) 推荐(0) 编辑
摘要: 【转】scrollIntoView的用法 - Rex_z的日志 - 网易博客 http://blog.163.com/rex_blog/blog/static/194480101201412514132691/ 阅读全文
posted @ 2016-04-12 10:12 夜深人静123 阅读(305) 评论(0) 推荐(0) 编辑
摘要: bug经历: 密码在用md5加密以后存储在数据库中,由于password字段的长度设置过小(eg:varchar(30)),导致数据库中只存储了一部分md5加密后的结果,导致登录不上去,把password字段的长度扩大(eg:varchar(100)),更新一下数据库结果,就可登录了。 阅读全文
posted @ 2016-04-11 10:21 夜深人静123 阅读(940) 评论(0) 推荐(0) 编辑
摘要: PHP编程中经常需要用到一些服务器的一些资料,特把$_SERVER的详细参数整理下,方便以后使用。 $_SERVER['PHP_SELF'] #当前正在执行 脚本的文件名,与 document root相关。 $_SERVER['argv'] #传递给该 脚本的参数。 $_SERVER['argc' 阅读全文
posted @ 2016-04-11 10:05 夜深人静123 阅读(1985) 评论(0) 推荐(0) 编辑
摘要: \u3000是全角空格的16进制Unicode编码。 \xa0代表  阅读全文
posted @ 2016-04-11 09:11 夜深人静123 阅读(3733) 评论(0) 推荐(1) 编辑
摘要: Javascript验证Textarea中是否有值 Javascript验证Textarea中是否有值 标签: javascripthtmlbuttonfunctioninput测试2012-03-02 16:44 1252人阅读 评论(0) 收藏 举报 标签: javascripthtmlbutt 阅读全文
posted @ 2016-04-10 17:44 夜深人静123 阅读(1478) 评论(0) 推荐(0) 编辑
摘要: var value = str.replace(/[\u4e00-\u9fa5]/g," "); //将汉字替换为两个空格 return value.length; 阅读全文
posted @ 2016-04-10 17:31 夜深人静123 阅读(947) 评论(0) 推荐(0) 编辑
摘要: 如果mysql_error()显示:ERROR 1064 : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right synt 阅读全文
posted @ 2016-04-10 10:53 夜深人静123 阅读(2031) 评论(0) 推荐(0) 编辑
摘要: <html><head><script>function $(e){return document.getElementById(e);}function go(){var reg=/^[1-9]{1}[0-9]{14}$|^[1-9]{1}[0-9]{16}([0-9]|[xX])$/;if(re 阅读全文
posted @ 2016-04-09 23:32 夜深人静123 阅读(302) 评论(0) 推荐(0) 编辑
摘要: javascript var patt1=new RegExp("hello","g");或new RegExp(/^\d+\w+\d+$/);字符串或pattern形式 patt1.test(str)用于检测字符串或固定的表达式 返回true或false; patt1.exec(str) 返回检测 阅读全文
posted @ 2016-04-09 22:45 夜深人静123 阅读(176) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 下一页