码迷,mamicode.com
首页 > Web开发 > 详细

js基本函数

时间:2017-04-19 09:41:54      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:时间   get   取整   char   max   date()   cas   bcd   数学   

时间:

var time = new Date();   //获取当前时间

var year = time.getFullyear();   //年份

var month = time.getMouth()+1;   //月份

var day = time.getDay();     //周几

var today = time.getDate();

alert(xx);       //可直接输出time

数学函数:

  var sx = Math.floor();     //取整数部分    

  var sx = Math.ceil();      //取小数部分  

  var sx = Math.round();     //四舍五入

  var sx = Math.max(x,x);    //取最大值

  var rand = Math.random();     //定义随机数组  

  rand2 = parseInt(rand * 4)    //取整  

  var arr = [‘0‘,‘1‘,‘2‘,‘3‘];  //转换为1234

字符串:  

var str = ‘abcdefg‘;  

var index = str.indexOf(‘c‘);   //找第一个c的索引值

 var chars = str.charAt();  

var lastindex = str.lastIndexof(‘c‘);   //找最后一个c的索引值  

str.substring(1,3);   //输出bc  

str.substr(1,3);      //从1开始,往后数三个,bcd  

str.replace(‘abc‘,‘123‘);  //123代替abc,输出123    

var up_str = str.toUpperCase();   //转换为大写字母  

str.toLowCase()    //转换为小写

 

js基本函数

标签:时间   get   取整   char   max   date()   cas   bcd   数学   

原文地址:http://www.cnblogs.com/gonghuixin/p/6731524.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!