tctip demo页面>
摘要: /** *获取当前时间 *format=1精确到天 *format=2精确到分 */ function getCurrentDate(format) { var now = new Date(); var year = now.getFullYear(); //得到年份 var month = now.getMonth();//得到月份 var date ... 阅读全文
posted @ 2018-12-24 16:48 张怼怼吖 阅读(2704) 评论(0) 推荐(0)
摘要: -- 方法1 select a.* from table1 a where not exists(select 1 from table1 b where b.name=a.name and b.gdtime>a.gdtime) --... 阅读全文
posted @ 2018-12-24 16:45 张怼怼吖 阅读(1009) 评论(0) 推荐(0)
摘要: 如果div中只有一个span一个元素,可以使用line-height。如果div中还有其他元素,可以设置span的css如下: 一、div设置百分百高度实现描述 在html布局中body内第一个div盒子对象设置100%高度height样式,是无法成功显示100%高度的。这个是因为body高度默认值 阅读全文
posted @ 2018-12-24 13:52 张怼怼吖 阅读(13664) 评论(0) 推荐(0)