zoukankan      html  css  js  c++  java
  • javascript输出时间格式:2009年7月7日

    用C#就这么简单,看来输出时间用js不太好。
    DateTime.Now.ToShortDateString();//输出2009-7-7
    DateTime.Now.ToString("yyyy年MM月dd日");
    DateTime.Now.ToString(
    "D");
    javascript居然这么大一堆。
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        
    <title>javascript输出时间格式:2009年7月7日</title>
        
    <script type="text/javascript">    
          
    function PageDate(){   
              currentDate 
    = new Date()   
              
    with(currentDate){   
                  day
    =getDay()   
                  month
    =getMonth()+1   
                  
    this.document.classname="sj"   
                  
    this.document.write('北京时间   '+getFullYear()+''+month+''+getDate()+'')   
              }   
              
    if   (day==1){document.write('   星期一')}   
              
    if   (day==2){document.write('   星期二')}   
              
    if   (day==3){document.write('   星期三')}   
              
    if   (day==4){document.write('   星期四')}   
              
    if   (day==5){document.write('   星期五')}   
              
    if   (day==6){document.write('   星期六')}   
              
    if   (day==0){document.write('   星期日')}   
              
    //document.write('<br/>')   
          }   
        
    </script>
    </head>
    <body>
        
    <table>
            
    <tr>
                
    <td>现在时间:</td>
                
    <td><script type="text/javascript">PageDate();</script></td>
            
    </tr>
        
    </table>
    </body>
    </html>
  • 相关阅读:
    使用tensorflow深度学习识别验证码
    单线程、多线程、多进程、协程比较,以爬取新浪军事历史为例
    web开发中的安全问题
    关于无效验证码
    怎么制作免费短信轰炸机
    python2.7中关于编码,json格式的中文输出显示
    一个网址
    基于pyteseract google ocr的图形验证码识别
    python使用pyqt写带界面工具
    python使用tkinter写带界面的工具
  • 原文地址:https://www.cnblogs.com/greatverve/p/1519264.html
Copyright © 2011-2022 走看看