Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

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

html - 仅当div超过一定长度时显示div(Show div only when it crosses a certain length)

There's over 25 questions listed in JSON.

(JSON中列出了25个以上的questions 。)

I'm trying to show the div only when the user has crossed the 5th question out of the 25 questions.

(我只想在用户越过25个问题中的第5个问题时显示div。)

How can I go about this?

(我该怎么办?)

Here's where I'm stuck:

(这是我被困的地方:)

<div *ngIf="questions.length > 5">{{(questionIndex+1)}}/{{(questions.length)}}</div>
  ask by Elaine Byene translate from so

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

1 Reply

0 votes
by (71.8m points)

Should be checked based on index not on length of the question.

(应该根据index而不是根据问题的长度进行检查。) <div *ngIf="questionIndex > 5">{{(questionIndex+1)}}/{{(questions.length)}}</div>


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...