本文轉載自:https://blog.csdn.net/xiaogeldx/article/details/85455011 JavaScript的math對象 math方法 sqrt:開方 abs:絕對值 PI:π pow:x的y次方 round:取整 floor:向下 ceil:向上 max:最 ...
本文轉載自:https://blog.csdn.net/xiaogeldx/article/details/85455011
JavaScript的math對象
math方法
- sqrt:開方
- abs:絕對值
- PI:π
- pow:x的y次方
- round:取整
- floor:向下
- ceil:向上
- max:最大數
- min:最小值
random:隨機數
document.write(Math.sqrt(16)+'<br>'); //開方 4 document.write(Math.abs(-1)+'<br>'); //絕對值 1 document.write(Math.PI*2+'<br>'); //π 6.28..... document.write(Math.pow(2,3)+'<br>'); //x的y次方 8 document.write(Math.round(3.6)+'<br>'); //取整,四捨五入 4 document.write(Math.floor(3.2)+'<br>'); //向下取整 3 document.write(Math.ceil(3.2)+'<br>'); //向上取整 4 document.write(Math.max(1,34,23)+'<br>'); //最大值 34 document.write(Math.min(1,34,23)+'<br>'); //最小值 1 document.write(Math.random()+'<br>');//0-1之內的隨機數 document.write(Math.random()*100+'<br>'); //0-100隨機數
JavaScript的日期對象
data方法
- getFullYear:獲取年
- getMonth:獲取月
- getDate:獲取日
- getDay:獲取周幾
- getHours:獲取小時
- getMINutes:獲取分鐘
- getSeconds:獲取秒數
- Date.now:時間戳
時間戳:格林威治時間1970年01月01日00時00分00秒(北京時間1970年01月01日08時00分00秒)起至現在的總秒數
var today = new Date(); document.write(today+'<br>'); //Mon Dec 31 2018 10:22:51 GMT+0800 (中國標準時間) var year = today.getFullYear(); document.write(year+'<br>'); //2018 var month = today.getMonth()+1; // 從 Date 對象返回月份 (0 ~ 11) document.write(month+'<br>'); //12 var day = today.getDay(); //從 Date 對象返回一周中的某一天 (0 ~ 6) document.write(day+'<br>'); //1周一 var day1 = today.getDate(); // document.write(day1+'<br>'); //31三十一號 var hour = today.getHours(); document.write(hour+'<br>'); //10(時) var minute = today.getMinutes(); document.write(minute+'<br>'); //34(分) var second = today.getSeconds(); document.write(second+'<br>'); //10(秒) document.write(year+'/'+month+'/'+day1+'/'+hour+':'+minute+':'+second) // 2018/12/31/10:37:14 document.write(Date.now()) //1546224045934(ms)
JavaScript的函數
- 函數是通常把一系列重覆使用的操作封裝成一個方法,方便調用
- 定義一個函數
- function funName(){}
- 函數分類
- 有名函數
匿名函數
有名函數
function add(參數) {
alert("我被調用了!");
} //後面不用;結尾
add() //調用匿名函數
var box = document.getElementsByTagName("div")[0];
box.onclick = function () {
alert("434");
}; //後面用;結尾帶參數傳參
function ase(a) { alert(a); } ase(222);
不定長傳參(以下兩種都不報錯)
function a() { console.log(arguments);//固定用arguments } a(1,3,7,'xiaoge');
- function b(a,b) {
console.log(arguments);
console.log(a,b)
}
b(1);
function b(a,b) {
console.log(arguments);
console.log(a,b)
}
b(1,3,7,'xiaoge');
函數表達式
自執行
!function () { document.write("w"+"<br>") }(); //w +function () { document.write("we"+"<br>") }(); //we -function () { document.write("wer"+"<br>") }(); //wer (function () { document.write("wert"+"<br>") })(); //wert (function () { document.write("wertu"+"<br>") }()); //wertu
作用域
//var 是定義局部變數 var a = 100; function func() { var a = 200; alert(a); } alert(a); func(); alert(a) //100,200,100 //不用var是定義全局變數 var a = 100; function func() { a = 200; alert(a); } alert(a); func(); alert(a) //100,200,200
JavaScript的定時器
- 設置定時器:setTimeout
- 清除定時器:clearTimeout
- 設置定時器:setInterval
- 清除定時器:clearInterval
清除定時器的時候要給定時器加個名字
<body> <button>stop</button> <script type="text/javascript"> setTimeout(function () { console.log(123); },2000); //兩秒後執行一次,不再執行 2000ms,1s=1000ms var a = setInterval(function () { console.log(321); },2000); //每兩秒執行一次 var b = document.getElementsByTagName('button')[0]; b.onclick = function () { clearInterval(a); }; </script> </body>