当前位置: 首页 > 图文教程 > 网络编程 > Javascript > javascript手冊-g

Javascript
web开发设计师比较费解的JavaScript
jQuery教程:整理的几个常见的初学者问题
免费资源:7个效果非常棒的jQuery 3D效果插件
JavaScript教程:编写匿名函数的几种方法
jQuery教程:jQuery的核心
jQuery教程:jQuery核心方法的使用
webjx收集45个jQuery导航插件和教程
30个气泡悬浮框(Tooltip)的jQuery插件
Jetpack扩展案例:Gmail邮件提醒功能
非常出色的jQuery运动特效可以和Flash媲美
ImagesLazyLoad 图片延迟加载效果
收集国外的14个图片放大编辑的jQuery插件
修改和创建DOM节点两种方式的4种优化方案
jQuery.Switchable整合插件用途介绍
提高Textarea操作性能优秀的jQuery插件
WEBJX收集12个非常有创意的JavaScript小游戏
Javascript教程:关于深入了解JS的几个问题

Javascript 中的 javascript手冊-g


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-08-10   浏览: 34 ::
收藏到网摘: n/a

getDate method

Returns the day of the month for the specified date.

语法

dateObjectName.getDate()

dateObjectName is either the name of a date object or a property of an existing object.

方法

Date

描述

The value returned by getDate is an integer between 1 and 31.

例子

The second statement below assigns the value 25 to the variable day, based on the value of the date object Xmas95.

Xmas95 = new Date("December 25, 1995 23:15:00")
day = Xmas95.getDate()

相关

  • setDate method

    getDay method

    Returns the day of the week for the specified date.

    语法

    dateObjectName.getDay()

    dateObjectName is either the name of a date object or a property of an existing object.

    方法

    Date

    描述

    The value returned by getDay is an integer corresponding to the day of the week: zero for Sunday, one for Monday, two for Tuesday, and so on.

    例子

    The second statement below assigns the value 1 to weekday, based on the value of the date object Xmas95. This is because December 25, 1995 is a Monday.

    Xmas95 = new Date("December 25, 1995 23:15:00")
    weekday = Xmas95.getDay()
    

    getHours method

    Returns the hour for the specified date.

    语法

    dateObjectName.getHours()

    dateObjectName is either the name of a date object or a property of an existing object.

    方法

    Date

    描述

    The value returned by getHours is an integer between 0 and 23.

    例子

    The second statement below assigns the value 23 to the variable hours, based on the value of the date object Xmas95.

    Xmas95 = new Date("December 25, 1995 23:15:00")
    hours = Xmas95.getHours()
    

    相关

  • setHours method

    getMinutes method

    Returns the minutes in the specified date.

    语法

    dateObjectName.getMinutes()

    dateObjectName is either the name of a date object or a property of an existing object.

    方法

    Date

    描述

    The value returned by getMinutes is an integer between 0 and 59.

    例子

    The second statement below assigns the value 15 to the variable minutes, based on the value of the date object Xmas95.

    Xmas95 = new Date("December 25, 1995 23:15:00")
    minutes = Xmas95.getMinutes()
    

    相关

  • setMinutes method

    getMonth method

    Returns the month in the specified date.

    语法

    dateObjectName.getMonth()

    dateObjectName is either the name of a date object or a property of an existing object.

    方法

    Date

    描述

    The value returned by getMonth is an integer between zero and eleven. Zero corresponds to January, one to February, and so on.

    例子

    The second statement below assigns the value 11 to the variable month, based on the value of the date object Xmas95.

    Xmas95 = new Date("December 25, 1995 23:15:00")
    month = Xmas95.getDate()
    

    相关

  • setMonth method

    getSeconds method

    Returns the seconds in the current time.

    语法

    dateObjectName.getSeconds()

    dateObjectName is either the name of a date object or a property of an existing object.

    方法

    Date

    描述

    The value returned by getSeconds is an integer between 0 and 59.

    例子

    The second statement below assigns the value 30 to the variable secs, based on the value of the date object Xmas95.

    Xmas95 = new Date("December 25, 1995 23:15:30")
    secs = Xmas95.getSeconds()
    

    相关

  • setSeconds method

    getTime method

    Returns the numeric value corresponding to the time for the specified date.

    语法

    dateObjectName.getTime()

    dateObjectName is either the name of a date object or a property of an existing object.

    方法

    Date

    描述

    The value returned by the getTime method is the number of milliseconds since 1 January 1970 00:00:00. You can use this method to help assign a date and time to another date object.

    例子

    The following example assigns the date value of theBigDay to sameAsBigDay.

    theBigDay = new Date("July 1, 1999")
    sameAsBigDay = new Date()
    sameAsBigDay.setTime(theBigDay.getTime())
    

    相关

  • setTime method

    getTimezoneOffset method

    Returns the time zone offset in minutes for the current locale.

    语法

    dateObjectName.getTimezoneOffset()

    dateObjectName is either the name of a date object or a property of an existing object.

    方法

    Date

    描述

    The time zone offset is the difference between local time and GMT. Daylight savings time prevents this value from being a constant.

    例子

    x = new Date()
    currentTimeZoneOffsetInHours = x.getTimezoneOffset()/60
    

    getYear method

    Returns the year in the specified date.

    语法

    dateObjectName.getYear()

    dateObjectName is either the name of a date object or a property of an existing object.

    方法

    Date

    描述

    The value returned by getYear is the year less 1900. For example, if the year is 1976, the value returned is 76.

    例子

    The second statement below assigns the value 95 to the variable year, based on the value of the date object Xmas95.

    Xmas95 = new Date("December 25, 1995 23:15:00")
    year = Xmas95.getYear()
    

    相关

  • setYear method

    go method

    Loads a URL from the history list.

    语法

    history.go(delta | "location")
    delta is an integer or a property of an existing object, representing a relative position in the history list.
    location is a string or a property of an existing object, representing all or part of a URL in the history list.

    方法

    history

    描述

    The go method navigates to the location in the history list determined by the argument that you specify. You can interactively display the history list by choosing History from the Window menu. Up to 10 items in the history list are also displayed on the Go menu.

    The delta argument is a positive or negative integer. If delta is greater than zero, the go method loads the URL that is that number of entries forward in the history list; otherwise, it loads the URL that is that number of entries backward in the history list. If delta is 0, Navigator reloads the current page.

    The location argument is a string. Use location to load the nearest history entry whose URL contains location as a substring. The location to URL matching is case-insensitive. Each section of a URL contains different information. See the location object for a 描述 of the URL components.

    例子

    The following button navigates to the nearest history entry that contains the string "home.netscape.com":

    <P><INPUT TYPE="button" VALUE="Go" onClick="history.go('home.netscape.com')">
    

    The following button navigates to the URL that is three entries backward in the history list:

    <P><INPUT TYPE="button" VALUE="Go" onClick="history.go(-3)">
    

    相关

  • back, forward methods