Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.4k views
in Technique[技术] by (71.8m points)

html - How to start timer only for selected item ? Angular Javascript

First look at my code which is complete here:

https://stackblitz.com/edit/test-trainin-2-gv9glh?file=src%2Fapp%2Fapp.component.html

When you press the 'Go' button you will see a timer that starts counting the seconds. I just want to click Go to count the seconds to click the row - card. Check function:

  startTimerForSingleTraining(j) {
    this.selectedTrainingIndex = this.selectedTrainingIndex === j ? null : j;
    // selectedTrainingIndex
    console.log(j);
    this.countDownForSingleStartTraining = timer(0, this.tick).subscribe(
      () => ++this.counterForSingleTrainingStart
    );
  }

and in html:

    <div class="button-absolute-page">
      <button
      class="btn btn-primary"
      (click)="finishedTraining(training)"
       (click)="startTimerForSingleTraining(j)"
       >
        Go
    </button>
   </div>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...