上一页 1 ··· 5 6 7 8 9 10 11 下一页
摘要: 【简单的JQuery】注册事件的函数。$(document).ready(function(){})【JQuery提供的函数】$.map(array,fn) 对数组array中每个元素调用fn函数逐个进行处理,fn函数将处理返回,最后得到一个新的数组。var arr = [3,5,9];var ar... 阅读全文
posted @ 2013-08-08 19:03 hg一如既往 阅读(463) 评论(1) 推荐(0) 编辑
摘要: 如果你已经有较多的面向对象开发经验,跳过以下这两步: 第一步 掌握一门.NET面向对象语言,C#或VB.NET 我强烈反对在没系统学过一门面向对象(OO)语言的前提下去学ASP.NET。 ASP.NET是一个全面向对象的技术,不懂OO,那绝对学不下去! 第二步 对.NET Framework类库有一定的了解 可以通过开发Windows Form应用程序来学习.NET Framework。ASP.NET是建构在.NET Framework之上的技术,你对.NET Framework了解得越深,学习ASP.NET就越快。 举个例子:下面简单列出几个对掌握ASP.NET非常重要的概念: 对象的内.. 阅读全文
posted @ 2013-08-06 03:57 hg一如既往 阅读(1047) 评论(1) 推荐(3) 编辑
摘要: 想让DIV层滚动条显示在顶端,CSS样式没找到相关属性,于是用2个DIV层来模拟做了一个。经测试IE浏览器上显示并不太美观!不知道是否还有更好的办法可以实现这功能呢?aaaaaaasssssssdddddddfffffffgggggggghhhhhhhhhjjjjjjjjkkkkkkkkllllll... 阅读全文
posted @ 2013-08-03 01:06 hg一如既往 阅读(7546) 评论(0) 推荐(0) 编辑
摘要: 评分:☆☆☆☆☆ 评分:☆☆☆☆☆ 阅读全文
posted @ 2013-08-01 02:58 hg一如既往 阅读(319) 评论(0) 推荐(0) 编辑
摘要: document.ondblclick 页面双击事件document.title.charAt(0) 取标题第1个字符串window.alert 弹出消息对话框window.confirm 显示确定和取消对话框window.setInterval 每隔一段时间执行指定的代码window.clearI... 阅读全文
posted @ 2013-07-30 05:45 hg一如既往 阅读(209) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 泛型{ class Stack { private object[] items; ... 阅读全文
posted @ 2013-07-23 16:03 hg一如既往 阅读(348) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 装箱拆箱{ //装箱与拆箱 //装箱(boxing)和拆箱(unboxing)的概念是 C# 的类型系统... 阅读全文
posted @ 2013-07-23 16:00 hg一如既往 阅读(227) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;//接口(interface)//接口(interface)定义了一个可由类和结构实现的协定。接口可以包含方法、属性、事件和索引器。//... 阅读全文
posted @ 2013-07-21 01:46 hg一如既往 阅读(665) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;//抽象类(abstract)//abstract 修饰符可以和类、方法、属性、索引器及事件一起使用。在类声明中使用abstract修饰... 阅读全文
posted @ 2013-07-20 02:43 hg一如既往 阅读(3645) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;//虚方法(virtual)//virtual 关键字用于修饰方法、属性、索引器或事件声明,并且允许在派生类中重写这些对象。//多态(P... 阅读全文
posted @ 2013-07-20 02:41 hg一如既往 阅读(1238) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 下一页