math物件的方法有:1、round(),用於四捨五入;2、ceil(),可向上取整;3、floor(),可向下取整;4、pow() ,可返回x的y次方;5、sqrt(),可傳回一個數的平方根;6、max();7、min();8、random();9、abx();10、sin( );11、asin();12、cos();13、acos();14、tan();15、exp()。
本教學操作環境:windows7系統、jquery3.6版本、Dell G3電腦。
jquery Math物件方法
四捨五入Math.round()
Math.round() //四舍五入,去最接近的整数 Math.round(2.2) //--2 Math.round(2.5) //--3
上取整Math.ceil()
Math.ceil() //上取整 Math.ceil(2.2) //--3 Math.ceil(2.5) //--3
下取整Math.floor()
Math.floor() //下取整 Math.floor(2.2) //--2 Math.floor(2.5) //--2
回傳x的y次方Math.pow(x,y)
Math.pow(x,y) //返回x的y次幂 Math.pow(2,2) //--4 Math.round(2,3) //--8
傳回x的平方根Math.sqrt()
Math.sqrt(x) Math.sqrt(4) //2 Math.sqrt(9) //3 Math.sqrt(6) //2.449489742783178
回傳x,y,z,…,n 中的最高值Math.max(x,y,z,…n)
Math.max(x,y,z,.....n) //返回 x,y,z,...,n 中的最高值 //Math.max(2,3,4,6,5)--6
傳回x,y,z,…,n中的最小值Math.min(x,y,z,…n)
Math.min(x,y,z,.....n) //返回 x,y,z,...,n中的最小值 //Math.max(2,3,4,6,5)--2
傳回0 ~ 1 之間的隨機數Math.random()
Math.random() //返回 0 ~ 1 之间的随机数 //返回0-100之间的随机数 x=100 y=0 //parseInt(Math.random()*(x - y + 1) + y)
傳回x 的絕對值Math.abx( x)
Math.abx(x) //返回 x 的绝对值 Math.abx(2) //--2 Math.abx(-2) //--2
傳回x 的正弦值Math.sin(x)
Math.sin(x) //返回 x 的正弦值 Math.sin(1) //0.8414709848078965
傳回x 的反正弦值Math.asin(x)
Math.asin(x) //返回 x 的反正弦值 Math.asin(-2); // NaN Math.asin(-1); // -1.5707963267948966 (-pi/2) Math.asin(0); // 0 Math.asin(0.5); // 0.5235987755982989 Math.asin(1); // 1.570796326794897 (pi/2) Math.asin(2); // NaN //对于小于 -1 或大于 1 的参数值,Math.asin 返回 NaN。
傳回x 的餘弦Math.cos(x)
Math.cos(x) Math.cos(1) //0.5403023058681398 Math.cos(-1) //0.5403023058681398
傳回x 的反餘弦值Math.acos(x)
Math.acos(-1) //3.141592653589793 Math.acos(-2) //NaN Math.acos(0) //1.5707963267948966 Math.acos(1) //0 //对于小于 -1 或大于 1 的参数值,Math.acos 返回 NaN。
返回角的正切Math.tan()
Math.tan() Math.tan(15) //-0.8559934009085188
回傳E的x次方的指數Math.exp(x)
//x 表示参数,e 是欧拉常数(Euler's constant),自然对数的底数。 Math.exp(2) //7.38905609893065 Math.exp(6) //403.4287934927351
【推薦學習:jQuery影片教學、web前端影片】
以上是jquery中math物件的方法有哪些的詳細內容。更多資訊請關注PHP中文網其他相關文章!