上一页 1 ··· 9 10 11 12 13 14 15 下一页
摘要: JQuery 提供了两种方式来阻止事件冒泡。 方式一:event.stopPropagation(); $("#div1").mousedown(function(event){ event.stopPropagation(); }); 方式二:return false; $("#div1").mo 阅读全文
posted @ 2016-07-26 12:26 阳光小白 阅读(5426) 评论(0) 推荐(0) 编辑
摘要: mysql 忘记root密码怎么办 登录linux执行命令:whereis mysql; 利用vim命令打开mysql配置文件my.cnf 在mysqld进程配置文件中添加skip-grant-tables,添加完成后,执行wd保存。 重启数据库 利用命令行工具重启数据库 ./mysql.serve 阅读全文
posted @ 2016-07-26 10:35 阳光小白 阅读(142) 评论(0) 推荐(0) 编辑
摘要: mysql 权限的相应修改UPDATE user SET Password = PASSWORD('bbbb') WHERE user = 'root';flush privileges;update user set host = '%' where user ='root';flush priv 阅读全文
posted @ 2016-07-26 10:30 阳光小白 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 查询重复订单select openid from `#_order` where openid in (select openid from `#_order` group by openid having count(1) > 1) group by openid; 阅读全文
posted @ 2016-07-26 10:27 阳光小白 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 解决外边框不计入div尺寸的代码-moz-box-sizing: border-box;box-sizing: border-box;-webkit-box-sizing: border-box; 手指按下有外边框的问题-webkit-tap-highlight-color:rgba(255,0,0 阅读全文
posted @ 2016-07-26 10:24 阳光小白 阅读(545) 评论(0) 推荐(0) 编辑
摘要: 注册支付宝开放平台 阅读全文
posted @ 2016-07-25 22:14 阳光小白 阅读(202) 评论(0) 推荐(0) 编辑
摘要: <?php $dsn = "mysql:host=127.0.0.1;dbname=blog_edu"; try{ $pdo = new PDO($dsn,'root',''); $pdo->query("SET NAMES UTF8"); $result = $pdo->query("SELECT 阅读全文
posted @ 2016-02-01 13:19 阳光小白 阅读(438) 评论(0) 推荐(0) 编辑
摘要: json_enocode() 此函数里边接收的数据必须是utf8格式。要不然会输出null 阅读全文
posted @ 2016-01-28 10:25 阳光小白 阅读(336) 评论(0) 推荐(0) 编辑
摘要: 在liunx下原本是不支持rar文件的,需要安装liunx下的winrar版本,操作如下 wget http://www.rarsoft.com/rar/rarlinux-4.0.1.tar.gz tar -zxvf rarlinux-4.0.1.tar.gz cd rar make 看见下面这些信 阅读全文
posted @ 2016-01-27 12:13 阳光小白 阅读(857) 评论(0) 推荐(0) 编辑
摘要: $(function(){ $('#send').click(function(){ $.ajax({ type: "GET", url: "test.json", data: {username:$("#username").val(), content:$("#content").val()},... 阅读全文
posted @ 2016-01-22 12:28 阳光小白 阅读(211) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 下一页