会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
小小高
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
8
9
10
11
12
13
14
15
16
···
46
下一页
2017年9月26日
at 命令
摘要: 每天什么时候执形at 12:00 /every:Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday shutdown -r
阅读全文
posted @ 2017-09-26 00:56 小小高
阅读(152)
评论(0)
推荐(0)
2017年9月25日
MyMVC
摘要: https://github.com/gaoconggit/MyMVC
阅读全文
posted @ 2017-09-25 20:21 小小高
阅读(163)
评论(0)
推荐(0)
2017年9月16日
asp.net 截屏
摘要: public class HomeController : Controller { // // GET: /Home/ static System.Windows.Forms.WebBrowser wb; public void ScreenCapture() { ...
阅读全文
posted @ 2017-09-16 15:08 小小高
阅读(352)
评论(0)
推荐(0)
2017年9月3日
js 创建多行字符串
摘要: Es6 写法 `ddddfdfdf dfdfdf `
阅读全文
posted @ 2017-09-03 12:16 小小高
阅读(714)
评论(0)
推荐(0)
2017年9月2日
autofac 实例生命周期
摘要: 转自逆心博客园 autofac 实例生命周期 实例生命周期决定在同一个服务的每个请求的实例是如何共享的。 当请求一个服务的时候,Autofac会返回一个单例 (single instance作用域), 一个新的对象 (per lifetime作用域) 或者在某种上下文环境中的单例。比如 一个线程 或
阅读全文
posted @ 2017-09-02 10:10 小小高
阅读(398)
评论(0)
推荐(0)
2017年9月1日
js 闭包实例
摘要: 1.当function里嵌套function时,内部的function可以访问外部function里的变量。 2. 外部变量(环境变量?), 包括: 2.1 全局变量,包括DOM。 2.2 外部函数的变量或函数。 如果一个函数访问了它的外部变量,那么它就是一个闭包。 从技术上来讲,在JS中,每个fu
阅读全文
posted @ 2017-09-01 18:09 小小高
阅读(239)
评论(0)
推荐(0)
2017年8月31日
asp.net 局域网中获取 client的机器名
摘要: //获取客户端计算机名称 System.Net.IPAddress clientIP = System.Net.IPAddress.Parse(Request.UserHostAddress);//根据目标IP地址获取IP对象 System.Net.IPHostEntry ihe = System.Net.Dns.GetHostEntry(cl...
阅读全文
posted @ 2017-08-31 12:21 小小高
阅读(534)
评论(0)
推荐(0)
2017年8月30日
css 阻止元素中的文本。双击选中
摘要: //firefox -moz-user-select: none; //chrome、safari -webkit-user-select: none; //ie -ms-user-select: none;
阅读全文
posted @ 2017-08-30 17:20 小小高
阅读(489)
评论(0)
推荐(0)
2017年8月29日
正则实践
摘要: C# 正则提取 Regex reg = new Regex(@"<img[\s]+src[\s]*=[\s]*['""](?<picPath>.*)['""][\s]*>"); reg.Match("<img src='http://www.baidu.com'>").Groups["picPath
阅读全文
posted @ 2017-08-29 22:50 小小高
阅读(154)
评论(0)
推荐(0)
jq dom不存在时绑定事件
摘要: $( "a.offsite" ).live( "click", function() { alert( "Goodbye!" ); // jQuery 1.3+ });//下面两个,第一个dom元素,不应该出现在第二个选择器中 $( document ).delegate( "a.offsite", "click", function() { alert( "Goodbye!" ); /...
阅读全文
posted @ 2017-08-29 15:45 小小高
阅读(403)
评论(0)
推荐(0)
上一页
1
···
8
9
10
11
12
13
14
15
16
···
46
下一页
公告