jquery中关于Math
对象有哪些用法,下面web建站小编给大家详细介绍一下各种方法!
//四舍五入 Math.round(2.2) //--2 Math.round(2.5) //--3
//上取整 Math.ceil(2.2) //--3 Math.ceil(2.5) //--3
//下取整 Math.floor(2.2) //--2 Math.floor(2.5) //--2
Math.pow(x,y)
//返回x的y次幂 Math.pow(2,2) //--4 Math.round(2,3) //--8
Math.sqrt()
//返回x的平方根 Math.sqrt(4) //2 Math.sqrt(9) //3 Math.sqrt(6) //2.449489742783178
Math.max(x,y,z,…n)
//返回 x,y,z,...,n 中的最高值 //Math.max(2,3,4,6,5)--6
Math.min(x,y,z,…n)
//返回 x,y,z,...,n中的最小值 //Math.max(2,3,4,6,5)--2
//返回 0 ~ 1 之间的随机数 //返回0-100之间的随机数 x=100 y=0 //parseInt(Math.random()*(x - y + 1) + y)
Math.abx(x)
//返回 x 的绝对值 Math.abx(2) //--2 Math.abx(-2) //--2
Math.sin(x)
//返回 x 的正弦值 Math.sin(1) //0.8414709848078965
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。
Math.cos(x)
Math.cos(1) //0.5403023058681398 Math.cos(-1) //0.5403023058681398
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(15) //-0.8559934009085188
Math.exp(x)
//返回 E的x次方 的指数 //x 表示参数,e 是欧拉常数(Euler's constant),自然对数的底数。 Math.exp(2) //7.38905609893065 Math.exp(6) //403.4287934927351
标签: Math.abx, Math.acos, Math.asin, Math.ceil, Math.cos, Math.exp, Math.floor, Math.max, Math.min, Math.pow, Math.random, Math.round, Math.sin, Math.tan
上面是“jquery中关于Math对象的各种用法”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_3257.html
workflows工作流
- 一个闪闪发光的金属球ComfyUI工作流
- 一座巨大的野兽派建筑漂浮在热带风景中的贫民
- 哈利波特魔法ComfyUI工作流
- 一碗热气腾腾的拉面ComfyUI工作流
- 一辆停在混凝土墙前运动型SUV捷豹概念车
- 一个外国人在吹奏萨克斯ComfyUI工作流
- 一张严重受损的宇宙飞船的照片ComfyUI工作流
- 一只巨大的古代乌龟后面建有一座城市的超现实场景
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!