VBScript Month 函数
Month 函数返回 1 到 12 之间的数字,表示指定日期的月份。
语法
Month(date)
示例
<!DOCTYPE html> <html> <body> <script language = "vbscript" type = "text/vbscript"> document.write(Month("2013-06-30")) </script> </body> </html>
当您将其另存为 .html 并在 Internet Explorer 中执行时,上述脚本将产生以下结果 −
6