Fork me on GitHub

07 2017 档案

摘要:checkbox 全选\全部取消 $("#ChkAll").click(function(){ $("#divContent input[type='checkbox']").attr("checked",$(this).attr("checked"));}); 获取选中的checkbox的valu 阅读全文
posted @ 2017-07-27 22:32 思考的大腿 阅读(2140) 评论(0) 推荐(0) 编辑
摘要:<style type="text/css">.content{ width:20%; height:60px; border:1px solid red; text-align:center;}span{ height:100%; vertical-align:middle; line-heigh 阅读全文
posted @ 2017-07-26 15:20 思考的大腿 阅读(318) 评论(0) 推荐(0) 编辑
摘要:解决办法: 使用 watch,观察路由,发生变化重新获取数据 阅读全文
posted @ 2017-07-17 17:06 思考的大腿 阅读(18221) 评论(0) 推荐(0) 编辑
摘要:把 safe write 的勾去掉就行了。 阅读全文
posted @ 2017-07-04 20:20 思考的大腿 阅读(2870) 评论(0) 推荐(0) 编辑
摘要:在Mysql中我们常常用order by来进行排序,使用limit来进行分页,当需要先排序后分页时我们往往使用类似的写法select * from 表名 order by 排序字段 limt M,N。但是这种写法却隐藏着较深的使用陷阱。在排序字段有数据重复的情况下,会很容易出现排序结果与预期不一致的 阅读全文
posted @ 2017-07-04 20:15 思考的大腿 阅读(36490) 评论(5) 推荐(8) 编辑