自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 资源 (1)
  • 收藏
  • 关注

原创 js继承实例

<br /> <br /><script><br />function Person(name){<br />    this.name=name;<br />}<br />Person.prototype.getName=function(){<br /> return this.name;<br />}<br />//var person = new Person("代绍帅");<br />//alert(person.getName());<br />/**************Author继承Pe

2010-11-10 23:13:00 313 1

原创 js面向对象设计

<br /> <br /><script><br />var Book = function(isbn, title, author){<br />this.isbn = isbn;<br />this.title = title;<br />this.author = author;<br />}<br />Book.prototype = {<br />  /*************Add Function display()***********/<br />  display:function()

2010-11-09 11:10:00 319

原创 JS 闭包&语法性质(lexically scoped)

var abz;(function(){  var foo = 10;  var bar = 2;   abz= function(){   alert(foo*bar);  };})();abz();JS闭包无法访问function内建参数,但是由于js具有语法性质(执行在定义域而不是运行域)可以在包外访问foo与bar。

2010-11-08 17:44:00 564

原创 数据结构二分法

<br />package per;     public class Array1 {       public int find(int searchKey, int[] array) {           int lowBound = 0;           int uppBound = array.length - 1;             int curIndex;           while (true) {               curIndex = (lowBound + 

2010-11-08 15:44:00 341

原创 Struts

<br />1.Struts1.0 核心件 Servlet

2010-11-08 15:21:00 187

原创 Simple Formula(Updating)

<br />1. [?@sum([?PARENTFIELD.counter]:1)]     -----> [?PARENTFIELD.counter] = [?PARENTFIELD.counter] + 1   

2010-11-08 14:58:00 256

原创 Replication&Confliction Documents Treatment

Replication/Save conflicts document are a necessary in a distributed environment like Lotus Notes. A developer can do all he/she can to minimize conflicts through things like setting the form properties to merge conflicts if possible and using document loc

2010-11-08 14:52:00 455

Jquery-help

Jquery开发文档 绝对有帮助 大家可以在开发的时候合理利用该帮组文档

2010-11-08

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除