此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。

View in English Always switch to English

Math.asin()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2015年7月⁩.

概述

Math.asin() 方法返回一个数值的反正弦(单位为弧度),即:

x[-1;1],Math.asin(x)=arcsin(x)= the unique y[-π2;π2]such thatsin(y)=x\forall x \in [{-1};1],;\mathtt{\operatorname{Math.asin}(x)} = \arcsin(x) = \text{ the unique } ; y \in \left[-\frac{\pi}{2}; \frac{\pi}{2}\right] , \text{such that} ; \sin(y) = x

语法

Math.asin(x)

参数

x

一个数值

描述

asin 方法接受 -1 到 1 之间的数值作为参数,返回一个介于 -π2-\frac{\pi}{2}π2\frac{\pi}{2} 弧度的数值。如果接受的参数值超出范围,则返回 NaN

由于 asinMath 的静态方法,所有应该像这样使用:Math.asin(),而不是作为你创建的 Math 实例的方法。

示例

示例:使用 Math.asin()

js
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.5707963267948966 (pi/2)
Math.asin(2); // NaN

对于小于 -1 或大于 1 的参数值,Math.asin 返回 NaN

规范

Specification
ECMAScript® 2026 Language Specification
# sec-math.asin

浏览器兼容性

参见