JavaScprit---基础代码

阅读更多
     var text = "Hello World";
      document.write("

" + text.indexOf("Hello")  + "

");
      document.write("

" + text.indexOf("World")  + "

");
      document.write("

" + text.indexOf("world")  + "

");
      document.write(text.match("Hello"));
      document.write(text.match("World"));
      document.write(text.match("Supan"));
      document.write(text.replace(/Hello/, "Supans"));  //输出Supans World
      document.write("
");
      document.write(text);
      document.write(Date());  //Sat Mar 01 2014 22:58:22 GMT+0800
     
      var d=new Date();   //当前日期时间
      document.write("从 1970/01/01 至今已有:" + d.getTime() + " 毫秒。");
     
      d.setFullYear(1992,10,3);   //设置日期
      document.write(d);








数字始终代码:





    




数组:
/code]

  


  

  
  
    
  

  
  

你可能感兴趣的:(JavaScript)