浅谈javascript常用类

浅谈javascript常用类

1,Math(数学对象)常用方法

1,ceil() 向上舍入 返回大于等于x,并且与它最接近的整数。

       var x=3.14;

       var y=-3.14;

        alert(Math.ceil(x));//4

        alert(Math.ceil(y));//-3

2, floor() 向下舍入 返回小于等于x,并且与它最接近的整数。

    var x=3.14;

     var y=-3.14;

      alert(Math.floor(x));//3

      alert(Math.floor(y));//-4

3,pow() 求幂

    alert(Math.pow(2,5)); //2的5次方

4,random() 随机数 ,返回0到1之间的小数,不包括0和1

    //求1-10之间的随机整数  Math.ceil(Math.random()*10)或者Math.floor(Math.random()*10+1)

5,round()四舍五入

    Math.round(-2.6) //-2  

2,Date时期类

1. get与set年月日时分秒 星期

2.getTime()获取当前日期与1970年1月1日之间的毫秒数 或者 valueOf() 或者parse(对象);

   //parse() 方法可解析一个日期时间字符串,并返回 1970/1/1 午夜距离该日期时间的毫秒数。

   var date=new Date(year, month, day[, hours, minutes, seconds]); //创建指定日起对象

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

   console.log(typeof date) //object

   console.log(date) ;//Fri Mar 30 2018 09:44:55 GMT+0800

console.log(date.getYear()) //获取年 118 (2018-1900)

console.log(date.getFullYear()) //获取年份 2018

console.log(date.getMonth()) //2 获取月份 0(一月)到11(十二月)

console.log(date.getDate()) //30 获取日

console.log(date.getDay()) //5 获取星期 0(周日) 到6(周六)

console.log(date.getHours()) //9  获取小时 0(午夜)到23(晚上 11点)

console.log(date.getMinutes()) //44 获取分 0~59

console.log(date.getSeconds()) //55  获取秒 0~59

console.log(date.getTime()) //1522375250179 毫秒数

console.log(date.valueOf()) //1522375250179  毫秒数

console.log(Date.parse(date))//1522375250179  毫秒数

3,String字符串类

1. charAt() 返回字符串中的下标为n的字符,n从0开始

    "hello".charAt(0) 

2. charCodeAt() 返回字符串中的下标为n的字符在ASCII表中的编号,n从0开始

      "a".charCodeAt(0)  //97

3.fromCharCode() 返回指定编号对应的字符串

  String.fromCharCode(97)

4.cancat() 连接字符串

      "A".concat("hello");//Ahello

5. indexOf() 返回指定字符的下标,若字符串中不存在指定字符返回-1

"hello".indexOf("l");//2

  lastIndexOf  从字符串末尾向前查找,返回指定字符的下标,若字符串中不存在指定字符返回-1

6,字符串截取( slice,substr,substring)

slice(startIndex,endIndex) 字符串截取,返回的子串包括startIndex对应的字符,但不包括endIndex对应的字符,参数可取负值,表示从末尾截取,最后一个字符下标为-1。

substr(startIndex, length) 字符串截取,从指定下标startIndex开始取,取length位, startIndex可取负值,表示从末尾截取。

例子:

"hello".slice(1,3) ;//el

"helloworld".slice(-5,-1) //worl

"hello".substr(1,3) // ell

"helloworld".substr(-5,4)//worl

"hello".substring(1,3) //el

"helloworld".substring(2) //lloworld

7.split 将字符串转成数组

8. toLowerCase()转小写

    toUpperCase()转大写

你可能感兴趣的:(浅谈javascript常用类)