04 2018 档案

摘要:https://blog.csdn.net/ll641058431/article/details/52768825 获取宽度 $('div').width(); 获取:区块的本身宽度 $('div').outerWidth(); 获取:区块的宽度+padding宽度+border宽度 $('div 阅读全文
posted @ 2018-04-22 20:12 LuoCore 阅读(254) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/zhoucheng05_13/article/details/53580683 No 'Access-Control-Allow-Origin' header is present on the requested resource.'Ajax跨域访问解决 阅读全文
posted @ 2018-04-20 15:58 LuoCore 阅读(7171) 评论(0) 推荐(0) 编辑
摘要:PRINT 1*10-10=1PRINT 2*10-10=11PRINT 3*10-10=21PRINT 4*10-10=31PRINT 5*10-10=41PRINT 6*10-10=51在此感谢SqlSugar ORM框架交流群的这位大神赐教 阅读全文
posted @ 2018-04-19 11:33 LuoCore 阅读(113) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/Terrylee/archive/2006/07/03/enterprise_library2_1.html 要使用ExceptionPolicy.HandleException必须先在NuGet包中添加 EnterpriseLibrary.Except 阅读全文
posted @ 2018-04-14 01:46 LuoCore 阅读(578) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/johnblogs/p/6006867.html DataTable ds = new DataTable(); //1、lamda 表达式写法(推荐) var result = ds.AsEnumerable().GroupBy(s => new{Y 阅读全文
posted @ 2018-04-11 22:26 LuoCore 阅读(729) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/lonestar555/article/details/7046717 MVC页面重定向,主要有以下几种形式: 1.Response.Redirect();方法 [csharp] view plain copy using System; using Sy 阅读全文
posted @ 2018-04-11 13:20 LuoCore 阅读(2100) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/u013790519/article/details/50036223 2、CheckBox的android:button=”@null”属性代码设置如下: 阅读全文
posted @ 2018-04-10 12:16 LuoCore 阅读(198) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/jkqnb/p/5949611.html1、添加表说明 EXECUTE sp_addextendedproperty N'MS_Description','表说明',N'user',N'dbo',N'table',N'表名',NULL,NULL 2、删 阅读全文
posted @ 2018-04-04 14:40 LuoCore 阅读(3797) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/liuyaozhi/archive/2015/10/14/4877987.html 1 use db_CSharp 2 go 3 select *, 4 备注=case 5 when Grade>=90 then '成绩优秀' 6 when Grade 阅读全文
posted @ 2018-04-04 12:16 LuoCore 阅读(285) 评论(0) 推荐(0) 编辑
摘要:https://zhidao.baidu.com/question/149116757.html create database stuDB on primary -- 默认就属于primary文件组,可省略 ( /*--数据文件的具体描述--*/ name='stuDB_data', -- 主数据 阅读全文
posted @ 2018-04-04 12:10 LuoCore 阅读(201) 评论(0) 推荐(0) 编辑
摘要:通过id获取的是一个对象 通过class获取的是一个数组 $($(".layui-tab-item layui-show")[0]).html(data)//实际测试没用。谁能指点一下 $("#BodyMune").html(data); 阅读全文
posted @ 2018-04-01 17:01 LuoCore 阅读(1937) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/jach/p/5709175.html form数据的序列化: jQuery的ajax方法: 原生的ajax方法: 阅读全文
posted @ 2018-04-01 15:13 LuoCore 阅读(127) 评论(0) 推荐(0) 编辑
摘要:ActionResult 父类型 ViewResult View() 多重载应用 PartialViewResult PartialView() 部分试图 New EmptyResult() 空 如统计 ContentResult() Content() 用于返回字符串 FileResult() f 阅读全文
posted @ 2018-04-01 13:54 LuoCore 阅读(383) 评论(0) 推荐(0) 编辑