上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 21 下一页
摘要: Unicode:内存操作(英文汉字都是两个字节) UTF-8:存储或数据传输(英文1个字节,汉字三个字节)(UTF-8是Unicode的实现方式之一) 阅读全文
posted @ 2019-10-24 09:57 vvull 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 后台对于接收的值,不可全信,要加以判断 阅读全文
posted @ 2019-10-23 14:02 vvull 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 关于Web前端密码加密是否有意义的总结! 阅读全文
posted @ 2019-10-21 15:44 vvull 阅读(187) 评论(0) 推荐(0) 编辑
摘要: Date.parse(String string)转为毫秒数进行比较 阅读全文
posted @ 2019-10-10 10:20 vvull 阅读(136) 评论(0) 推荐(0) 编辑
摘要: const只能声明时初始化(使用时与静态变量相似)(编译时确定) const int a = 1017; const string s = "abcde"; const object o = null; readonly可以声明时初始化,也可以在构造函数中赋值,也可以声明时初始化后构造函数重新赋值( 阅读全文
posted @ 2019-10-08 10:49 vvull 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-09-25 09:35 vvull 阅读(215) 评论(0) 推荐(0) 编辑
摘要: $('#dg').datagrid('loadData', { total: 0, rows: [] }); 阅读全文
posted @ 2019-09-18 10:03 vvull 阅读(611) 评论(0) 推荐(0) 编辑
摘要: $.getJSON("example.json", function() { alert("success"); }) .success(function() { alert("second success"); }) .error(function() { alert("error"); }) .complete(function() { alert("complete"); }); 阅读全文
posted @ 2019-09-18 09:48 vvull 阅读(526) 评论(0) 推荐(0) 编辑
摘要: 假分页就是将数据一下全查出来,利用前端来把所有数据进行分页 阅读全文
posted @ 2019-09-17 14:08 vvull 阅读(299) 评论(0) 推荐(0) 编辑
摘要: 上一个页面中的@section headim{ *** }放在这里 这个页面中的@section headim{@RenderSection("headim", required: false)}前往_NFrame.cshtml找地方放 阅读全文
posted @ 2019-09-12 16:02 vvull 阅读(137) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 21 下一页