上一页 1 2 3 4 5 6 7 8 ··· 10 下一页
摘要: jQuery 的选择器可谓之强大无比,这里简单地总结一下常用的元素查找方法 $("#myELement") 选择id值等于myElement的元素,id值不能重复在文档中只能有一个id值是myElement所以得到的是唯一的元素 $("div") 选择所有的div标签元素,返回div元素数组 $(".myClass") 选择使用myClass类的cs... 阅读全文
posted @ 2016-09-24 14:09 dldg 阅读(225) 评论(0) 推荐(0) 编辑
摘要: You may be blocked from installing the .NET Core Tooling Preview 2 for Visual Studio 2015 installer due to a temporary bug. To workaround it, run the 阅读全文
posted @ 2016-07-31 10:12 dldg 阅读(1528) 评论(0) 推荐(0) 编辑
摘要: ASP.NET MVC 目前一共提供了以下几种Action返回结果类型:1、ActionResult(base)2、ContentResult 3、EmptyResult 4、HttpUnauthorizedResult 5、JavaScriptResult 6、JsonResult 7、FileR... 阅读全文
posted @ 2015-09-11 12:56 dldg 阅读(356) 评论(0) 推荐(0) 编辑
摘要: Code Review是一种通过复查代码提高代码质量的过程,在XP方法中占有极为重要的地位,也已经成为软件工程中一个不可缺少的环节。本文通过对Code Review的一些概念和经验的探讨,就如何进行Code Review和Code Review中应该注意什么提出一些建议。 本文中涉及的问题大部分针对... 阅读全文
posted @ 2015-07-16 08:40 dldg 阅读(180) 评论(0) 推荐(0) 编辑
摘要: SQL:SELECT [t0].[ProductName], [t1].[TotalPrice] AS [TotalPrice]FROM [Product] AS [t0]LEFT OUTER JOIN [OrderDetail] AS [t1] ON [t0].[ProductID] = [t1]... 阅读全文
posted @ 2015-07-02 19:57 dldg 阅读(532) 评论(0) 推荐(0) 编辑
摘要: //2008年4月24日 System.DateTime.Now.ToString("D"); //2008-4-24 System.DateTime.Now.ToString("d"); //2008年4月24日 16:30:15 System.DateTi... 阅读全文
posted @ 2015-06-12 13:10 dldg 阅读(239) 评论(0) 推荐(0) 编辑
摘要: The specified LINQ expression contains references to queries that are associated with different cont。解决方法:查询源的最后添加.ToList();一定是哪里转换成了IEnumerable或其他东东了... 阅读全文
posted @ 2015-06-03 10:41 dldg 阅读(1353) 评论(0) 推荐(0) 编辑
摘要: 使用命令行修改cmd下setjava_home=D:\soft\java\jdk1.7.0_72搞定 阅读全文
posted @ 2015-04-24 11:53 dldg 阅读(315) 评论(0) 推荐(0) 编辑
摘要: Windows-->Preferences-->Myeclipse-->FilesandEditors-->JavaScript-->Editor-->SyntaxColoring至此点击右边的Background-->Scriptblock设置颜色为你jsp页面的背景色或者深一点的颜色 阅读全文
posted @ 2015-04-21 09:32 dldg 阅读(848) 评论(0) 推荐(0) 编辑
摘要: 转:【http://segmentfault.com/a/1190000002449629】本实验在虚拟机下测试通过虚拟机IP 192.168.199.146clipboard.pngclipboard.png安装好 CentOS 6.5 之后1、更新系统在命令行下执行yum –y update2、... 阅读全文
posted @ 2015-04-10 09:44 dldg 阅读(254) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页