# InnerAudioContext.seek(number position)

跳转到指定位置

## 支持说明

应用能力 | Android | iOS | PC | Harmony | 预览效果
---|---|---|---|---|---
小程序 | **✓** | **✓** | **✕** | V7.43.0+ | 预览
网页应用 | **✕** | **✕** | **✕** | **✕** | /

## 输入

名称 | 数据类型 | 必填 | 默认值 | 描述
---|---|---|---|---
position | number | 是 | &nbsp; | 跳转到指定的位置播放，单位为 s

## 输出
无

## 示例代码

```js
const innerAudioContext = tt.createInnerAudioContext();
innerAudioContext.autoplay = true;
innerAudioContext.src = 'https://someaudiourl';
innerAudioContext.seek(1);
```

