分享
 
 
 

javascript手冊-g

王朝html/css/js·作者佚名  2006-01-08
窄屏简体版  字體: |||超大  

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

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有