Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

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

javascript - Decrease counter based on html element

I passed a integer variable as a context when i rendered a webpage. That variable is the initial number of untagged images that i have uploaded to my web application.

I then display my images in a table with the first column being the image and second column being the tag name and the third containing a button which leads to a modal that allows me to edit the tags for the images.

How am i able to decrease the count of untagged images counter whenever i fill in an empty tag?


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

1 Answer

0 votes
by (71.8m points)

If you are keeping track of the tag variable as well, then you can check if it is an empty string, if it is then it's untagged, if it is not then you can decrease the counter. You can loop through the list of tags to check all of them.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...