当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Javascript date.setSeconds()用法及代码示例


date.setSeconds()是JavaScript中的内置函数,用于将秒设置为使用Date()构造函数创建的Date对象。

用法:

DateObj.setSeconds(seconds_Value)

DateObj是使用Date()构造函数创建的有效Date对象,我们要在其中构造第二个对象。秒的值是从0到59。


参数:这里的参数seconds_Value是秒的值,用于在Date()构造函数中设置。

返回值:它返回由setSeconds()函数设置的具有更新秒数的新日期。

下面的程序演示了setSeconds()函数:

<script> 
// Here a date has been assigned 
// while creating Date object 
var dateobj = new Date('October 13, 1996 05:35:32'); 
  
// new second of 52 is being set in above Date 
// Object with the help of setSeconds() function 
dateobj.setSeconds(52); 
  
// new second from above Date Object is 
// being extracted using getSeconds() 
var B = dateobj.getSeconds(); 
  
// Printing new Second 
document.write(B); 
</script>

输出:

52

错误和异常

  • 示例1:如果在Date()构造函数中没有给出任何第二个,则setSeconds()函数仍然设置新的第二个作为其参数。
    <script> 
    // Here second has not been assigned 
    // while creating Date object 
    var dateobj = new Date('October 13, 1996'); 
      
    // new second of 51 is being set in above Date 
    // Object with the help of setSeconds() function 
    dateobj.setSeconds(51); 
      
    // new second from above Date Object is 
    // being extracted using getSeconds() 
    var B = dateobj.getSeconds(); 
      
    // Printing new Second 
    document.write(B); 
    </script>

    输出:

    51
  • 示例2:如果在Date()构造函数中未提供任何参数,则仍将setSeconds()函数设置为第二,但是将月份,年份,日期等作为当前函数。
    <script> 
    // Here nothing has been assigned 
    // while creating Date object 
    var dateobj = new Date(); 
      
    // new second of 42 is being set in above Date 
    // Object with the help of setSeconds() function 
    dateobj.setSeconds(42); 
      
    // Seconds from above Date Object is 
    // being extracted using getSeconds() 
    var B = dateobj.getSeconds(); 
      
    // month from above Date Object is 
    // being extracted using getMonth() 
    var C = dateobj.getMonth(); 
      
    // date from above Date Object is 
    // being extracted using getDate() 
    var D = dateobj.getDate(); 
      
    // year from above Date Object is 
    // being extracted using getFullYear() 
    var E = dateobj.getFullYear(); 
      
    // Printing new seconds 
    document.write(B + "<br>"); 
      
    // Printing current month 
    document.write(C + "<br>"); 
      
    // Printing current date 
    document.write(D + "<br>"); 
      
    // Printing current year 
    document.write(E); 
    </script>

    输出:

    42
    3
    1
    2018

    这里42是新的秒数,3是当前月份,即4月,1是当前日期,2018是当前年份。

  • 示例3:如果将秒66的值作为setSeconds()函数的参数给出,则它将6设置为秒,因为第二范围是从0到59的形式,并且(66%60 = 6)。
    <script> 
    // Here date has been assigned 
    // while creating Date object 
    var dateobj = new Date('October 13, 1996 05:35:32'); 
      
    // new second of 66 is being set in above Date 
    // Object with the help of setSeconds() function 
    dateobj.setSeconds(66); 
      
    // seconds from above Date Object is 
    // being extracted using getSeconds() 
    var B = dateobj.getSeconds(); 
      
    // Minute from above Date Object is 
    // being extracted using getMinutes() 
    var C = dateobj.getMinutes(); 
      
    // Printing new seconds 
    document.write(B + "<br>"); 
      
    // Printing minutes 
    document.write(C); 
    </script>

    输出:

    6
    36

    此处6是新的秒,分钟从35变为36,因为第二范围是从0到59。因此,当将66作为参数传递给setSeconds()函数时,它将把相应Date对象中的秒设置为(66%60 = 6 ),并将相应的Date对象中的分钟数增加(66/60 = 1)。

支持的浏览器:JavaScript date.setSeconds()函数支持的浏览器如下:

  • 谷歌浏览器
  • IE浏览器
  • 火狐浏览器
  • Opera
  • 苹果浏览器


相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 JavaScript | date.setSeconds() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。