概述
Math.asin()
方法返回一个数值的反正弦(单位为弧度),即:
语法
Math.asin(x)
参数
-
x
- 一个数值
描述
asin
方法接受 -1 到 1 之间的数值作为参数,返回一个介于 到 弧度的数值。如果接受的参数值超出范围,则返回 NaN
。
由于 asin
是 Math
的静态方法,所有应该像这样使用:Math.asin()
,而不是作为你创建的 Math
实例的方法。
示例
例子:使用 Math.asin()
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
。
规范
规范版本 | 规范状态 | 注解 |
---|---|---|
ECMAScript 1st Edition. Implemented in JavaScript 1.0 | Standard | Initial definition. |
ECMAScript 5.1 (ECMA-262) Math.asin |
Standard | |
ECMAScript 6 (ECMA-262) Math.asin |
Release Candidate |
浏览器兼容性
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
相关链接
- The
Math
object it belongs to. Math.acos()
Math.atan()
Math.atan2()
Math.cos()
Math.sin()
Math.tan()