///////////////////
//字串物件常用方法 //
///////////////////
// indexof(),獲得字元在字串中第一次出現的位置(從零開始算)
// lastindexof(),獲得字元在字串中最後一次出現的位置
// var str = 'helloword';
// var index = str.indexof('o');
// var last = str.lastindexof('h');
// console.log(index);
// console.log(last);
// split(),按照分隔符將字串拆分成陣列
// 引數1:分隔符,按照什麼分隔符進行拆分
// 引數2:可選,限制要幾個元素
// replace(a,b)將a替換成b
// var str = 'hellowordl1234';
// var reg = '1234';
// var result = str.replace(reg,'!');
// console.log(result);
//charat(index),查詢在index這個索引處的字元
// var str = 'hellow';
// var a = str.charat(4);//在4索引位置字元
// console.log(a);
// slice(start,end),從start開始擷取,擷取到end這個位置
// substr(start,length),從start位置開始擷取,擷取length個長度
// var str = 'qinghui';
// var result = str.substr(0,4);
// console.log(result);
// tolowercase(),將字串轉換成小寫
// touppercase(),將字串轉換成大寫
// 數學物件常用方法 //
//////////////
// math.abs() 計算絕對值
// var num = -100;
// var result = math.abs(num);
// console.log(result);
// math.ceil(),向上取整數 不管小數點後面小數是多少,都會進一取整
// var num = 123.001;
// var result = math.ceil(num);
// console.log(result);
// math.floor(),向下取整數
// var num = 123.99;
// var result = math.floor(num);
// console.log(result);
// math.round(),四捨五入取整
// var num = 123.4;
// var result = math.round(num);
// console.log(result);
// math.max(),計算最大值
// math.min(),計算最小值
// var max = math.max(100,200,220);
// var min = math.min(100,200,220);
// console.log(max);
// console.log(min);
// math.pow(x,y) 獲得x的y次方【冪】
// var result = math.pow(2,3);
// console.log(result);
// math.sqrt(num) 獲得num的平方根
// var result = math.sqrt(144);
// console.log(result);
// math.random() 取得0-1之間的隨機數
// var random = math.random();
// console.log(random);
//////////////////
//日期物件常用方法 //
//////////////////
// 日期物件提供了如下方法,獲得年月日、時分秒:
// getfullyear、getmonth()、getdate()、gethours()、getminutes()、getseconds()
// //獲得日期物件:new date()
// var odate = new date();
// //獲得年月日,時分秒
// var year = odate.getfullyear();
// var month = odate.getmonth()+1; //值是從0-11只見的數字,0就是1月...
// month = month
<
10?'0'+month:month;
// var day
= odate.getdate();
// var hour
= odate.gethours();
// var minute
= odate.getminutes();
// var second
= odate.getseconds();
// //寫入body中
// //getday() 獲得星期幾
// var odate
= new
date();
// //星期幾
// var week
= odate.getday();
//返回 0-6之間的數值,0代表星期天
// console.log(week);
// tolocalestring(),將日期物件轉換成本地的時間格式
// var odate
= new
date();
// var a
= odate.tolocaledatestring();
// document.write(a);
js 日期物件常用方法,數學物件常用方法,字串物件常用方法
字串物件(js)
1 字面量建立 推薦 成對的單雙引號引著的就是字串 var str1 花自飄零水自流 console.log str1 console.log typeof str1 string 2 函式建立 var str2 string 一種相思,兩處閒愁 console.log str2 console.l...
js 字串和日期物件之間的轉換
var strtime 2011 04 16 字串日期格式 var date new date date.parse strtime.replace g,轉換成data var month date.getmonth 1 獲取當前月份 測試輸出 var d new date 2018 7 1 con...
js中的包裝物件 關於字串
語法 需要new var s new string value 基本資料型別 string number boolean underfined null 包裝物件 sting number boolean tofixed 保留小數點後若干位 length 字串中字元的個數 instanceof 檢測...