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