ホームページ  >  記事  >  ウェブフロントエンド  >  jqueryの数学オブジェクトのメソッドは何ですか

jqueryの数学オブジェクトのメソッドは何ですか

青灯夜游
青灯夜游オリジナル
2023-01-18 13:58:412150ブラウズ

数学オブジェクトのメソッドは次のとおりです: 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()。

jqueryの数学オブジェクトのメソッドは何ですか

このチュートリアルの動作環境: 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

四捨五入down Math.floor()

Math.floor()
//下取整
Math.floor(2.2) //--2
Math.floor(2.5) //--2

xMath.pow(x,y)の y 乗を返します

Math.pow(x,y)
//返回x的y次幂
Math.pow(2,2) //--4
Math.round(2,3) //--8

xMath.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 の最小値を返します。 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)

xMath.abx( x)# の絶対値を返します##

Math.abx(x)
//返回 x 的绝对值
Math.abx(2) //--2
Math.abx(-2) //--2

xMath.sin(x) の正弦を返します

Math.sin(x)
//返回 x 的正弦值
Math.sin(1)
//0.8414709848078965

xMath.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 の指数のパワー

以上がjqueryの数学オブジェクトのメソッドは何ですかの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。