diff --git a/packages/taro-components/src/components/video/video.tsx b/packages/taro-components/src/components/video/video.tsx index a89423011261..bfd1beae0a5d 100644 --- a/packages/taro-components/src/components/video/video.tsx +++ b/packages/taro-components/src/components/video/video.tsx @@ -556,9 +556,9 @@ export class Video implements ComponentInterface { currentTime={this.currentTime} duration={this.duration || this._duration || undefined} isPlaying={this.isPlaying} - pauseFunc={this.pause} - playFunc={this.play} - seekFunc={this.seek} + pauseFunc={()=>this.pause()} + playFunc={()=>this.play()} + seekFunc={(position)=>this.seek(position)} showPlayBtn={this.showPlayBtn} showProgress={this.showProgress} >