07 2018 档案
摘要:一:用处 表单验证 二:常用匹配 1.匹配非负整数(正整数 + 0): ^\d+$ 2.匹配正整数 : ^[0-9]*[1-9][0-9]*$ 3.匹配非正整数(负整数 + 0): ^((-\d+)|(0+))$ 4.匹配负整数:^-[0-9]*[1-9][0-9]*$ 5.匹配整数: ^-?\d+
阅读全文
摘要:jQuery.ajaxSettings.traditional = true; $.post("",function(){});
阅读全文
摘要:例一:要求:查询是否存在名字为“张三”的学生。 例二:要求:查询教过“张三”或“李四”的老师。 在导航属性里面使用count和使用any性能区别不大,反而FirstOrDefault() != null的方式性能最差。 在直接属性判断里面any和FirstOrDefault() != null性能区
阅读全文
摘要:public ActionResult uploadPhos(HttpPostedFileBase files) //多图片上传 { if (!Directory.Exists(AppDomain.CurrentDomain.BaseDirectory + @"\Uploads")) //判断文件夹
阅读全文
摘要:1.View <button type="button" class="layui-btn" id="test"></button> <h3>预览</h3> <img id ="img" src=""> 2.Js <script> $(function () { layui.use('upload'
阅读全文