Let's go
上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 55 下一页
摘要: https://www.cnblogs.com/yaopengfei/p/9428206.html 阅读全文
posted @ 2018-08-28 17:47 chenze 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 回车提交方式 1.按钮提交方式 1 //按钮事件 2 $(‘#btnSumit‘).click(function() { 3 alert(‘测试‘); 4 }); 5 //回车提交事件 6 $("body").keydown(function() { 7 if (event.keyCode == " 阅读全文
posted @ 2018-08-28 08:35 chenze 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 一丶装箱和拆箱 值类型:int、double、char、bool、decimal、struct、enum 引用类型:各种class类、string、数组、接口、委托、object 1.装箱: 从值类型接口转换到引用类型。 2.拆箱: 从引用类型转换到值类型。 二丶在.Net中所有可序列化的类都被标记 阅读全文
posted @ 2018-08-27 15:02 chenze 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 引入EPPlus的NuGet程序包 一丶导出excel文件 1 static void Main(string[] args) 2 { 3 FileInfo newFile = new FileInfo(@"E:\test.xlsx"); 4 if (newFile.Exists) 5 { 6 ne 阅读全文
posted @ 2018-08-27 12:07 chenze 阅读(2102) 评论(0) 推荐(0) 编辑
摘要: 区别: setInterval函数的用法与setTimeout完全一致,区别仅仅在于setInterval指定某个任务每隔一段时间就执行一次,也就是无限次的定时执行。 取消定时器:(clearTimeout和clearInterval) setTimeout和setInterval函数,都返回一个表 阅读全文
posted @ 2018-08-24 17:37 chenze 阅读(231) 评论(0) 推荐(0) 编辑
上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 55 下一页
有事您Q我