上一页 1 ··· 3 4 5 6 7 8 9 10 下一页
摘要: 浏览器版本低于8以下就跳到kill-ie.html 阅读全文
posted @ 2016-10-10 08:58 hllive 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 使用: 阅读全文
posted @ 2016-10-10 00:49 hllive 阅读(317) 评论(0) 推荐(0) 编辑
摘要: json对象转js字符串 js字符串转json对象 阅读全文
posted @ 2016-10-08 21:06 hllive 阅读(137) 评论(0) 推荐(0) 编辑
摘要: select*from (select row_number() over(orderby id) as[rows], *fromtable) as t where t.[rows]>=@startand t.[rows]<=@end 阅读全文
posted @ 2016-10-05 12:04 hllive 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 1 //yyyy-MM-dd HH:mm:SS 2 function JsonDateToDate(jsondate) { 3 var date = new Date(parseInt(jsondate.replace("/Date(", "").replace(")/", ""), 10)); 4 阅读全文
posted @ 2016-10-02 16:31 hllive 阅读(272) 评论(0) 推荐(0) 编辑
摘要: 1、在input输入数据时执行的事件(边输入边触发事件) 2、关闭浏览器事件 阅读全文
posted @ 2016-09-28 18:36 hllive 阅读(157) 评论(0) 推荐(0) 编辑
摘要: WITH a AS ( SELECT * FROM view_SubjectList WHERE id=1 UNION ALL SELECT s.* FROM view_SubjectList AS s,a WHERE s.pId=a.ID ) SELECT * FROM a 阅读全文
posted @ 2016-09-05 14:07 hllive 阅读(464) 评论(0) 推荐(0) 编辑
摘要: 问题:当ajax提交数据返回数据后,指定的ID绑定事件$('#imgFile').on("change", function () {……不能触发了 解决办法:把on改为live 阅读全文
posted @ 2016-08-29 15:28 hllive 阅读(127) 评论(0) 推荐(0) 编辑
摘要: --新建数据库 create database admin --新建表同时建字段 create table student ( ID int, namee nvarchar(5), age nchar(1), sex int ) --删除表 drop table student --查询 select * from student --查询指定的字段 select ID,age from st... 阅读全文
posted @ 2016-08-26 11:32 hllive 阅读(392) 评论(0) 推荐(0) 编辑
摘要: html代码 效果如下: 阅读全文
posted @ 2016-08-01 09:49 hllive 阅读(255) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 下一页