水珮风裳  
First seperating,Finally meeting.
有一种厌倦叫热情;有一种等待叫积极;有一种发呆叫思索;有一种逃离叫勇气.

随笔分类 -  javascript

  • javascript操作Select标记中options集合
    摘要:先来看看options集合的这几个方法:options.add(option)方法向集合里添加一项option对象;options.remove(index)方法移除options集合中的指定项;options(index)或options.item(index)可以通过索引获取options集合的指定项;javascript代码如下:[代码]注意到上面创建option项时,使用了Option()... 阅读全文
    posted @ 2008-12-26 10:34 水冰月 阅读(242) 评论(0) 推荐(0)
  • 一个不错的日历控件
    摘要:1function atCalendarControl(){ 2 var calendar=this; 3 this.calendarPad=null; 4 this.prevMonth=null; 5 this.nextMonth=null; 6 this.prevYear=null; 7 this.nextYear=null; 8 this.goToday=nu... 阅读全文
    posted @ 2006-11-22 09:02 水冰月 阅读(396) 评论(2) 推荐(0)