非常教程

JavaScript参考手册

日期 | Date

date.setUTCSeconds

此 setUTCSeconds()方法为一个依据国际通用时间的特定日期设置秒数。

语法

dateObj.setUTCSeconds(secondsValue[, msValue])

参数

secondsValue一个在0到59之间的整数,表示秒数。msValue可选参数。一个0到999之间的数字,代表毫秒数。

返回值

一个毫秒数,表示从国际通用时间1970年00:00:00到设置的时间值之间的时间跨度。

描述

如果你没有设置msValue参数的值, 那么返回的值来自getUTCMilliseconds() 方法。

如果你指定的值超出了范围, setUTCSeconds() 因此会更新Date 对象中date的相关信息 . 举个例子, 如果你设置secondsValue为100, Date 对象中的分钟数会增加1, 并且秒数会变成40.

例子

Using setUTCSeconds()

var theBigDay = new Date();
theBigDay.setUTCSeconds(20);

规格

Specification

Status

Comment

ECMAScript 1st Edition (ECMA-262)

Standard

Initial definition. Implemented in JavaScript 1.3.

ECMAScript 5.1 (ECMA-262)The definition of 'Date.prototype.setUTCSeconds' in that specification.

Standard

ECMAScript 2015 (6th Edition, ECMA-262)The definition of 'Date.prototype.setUTCSeconds' in that specification.

Standard

ECMAScript Latest Draft (ECMA-262)The definition of 'Date.prototype.setUTCSeconds' in that specification.

Draft

浏览器兼容性

Feature

Chrome

Firefox

Edge

Internet Explorer

Opera

Safari

Basic Support

(Yes)

(Yes)

(Yes)

(Yes)

(Yes)

(Yes)

Feature

Android

Chrome for Android

Edge mobile

Firefox for Android

IE mobile

Opera Android

iOS Safari

Basic Support

(Yes)

(Yes)

(Yes)

(Yes)

(Yes)

(Yes)

(Yes)

JavaScript

JavaScript 是一种高级编程语言,通过解释执行,是一门动态类型,面向对象(基于原型)的解释型语言。它已经由ECMA(欧洲电脑制造商协会)通过 ECMAScript 实现语言的标准化。它被世界上的绝大多数网站所使用,也被世界主流浏览器( Chrome、IE、FireFox、Safari、Opera )支持。JavaScript 是一门基于原型、函数先行的语言,是一门多范式的语言,它支持面向对象编程,命令式编程,以及函数式编程。它提供语法来操控文本、数组、日期以及正则表达式等,不支持 I/O,比如网络