摘要:
JQuery 提供了两种方式来阻止事件冒泡。 方式一:event.stopPropagation(); $("#div1").mousedown(function(event){ event.stopPropagation(); }); 方式二:return false; $("#div1").mo 阅读全文
摘要:
mysql 忘记root密码怎么办 登录linux执行命令:whereis mysql; 利用vim命令打开mysql配置文件my.cnf 在mysqld进程配置文件中添加skip-grant-tables,添加完成后,执行wd保存。 重启数据库 利用命令行工具重启数据库 ./mysql.serve 阅读全文
摘要:
mysql 权限的相应修改UPDATE user SET Password = PASSWORD('bbbb') WHERE user = 'root';flush privileges;update user set host = '%' where user ='root';flush priv 阅读全文
摘要:
查询重复订单select openid from `#_order` where openid in (select openid from `#_order` group by openid having count(1) > 1) group by openid; 阅读全文
摘要:
解决外边框不计入div尺寸的代码-moz-box-sizing: border-box;box-sizing: border-box;-webkit-box-sizing: border-box; 手指按下有外边框的问题-webkit-tap-highlight-color:rgba(255,0,0 阅读全文