这是我在浏览器中可以看到的 Html
<div id="mygallery-paginate">
<img src="images/opencircle.png" data-index="0" data-moveto="0" title="" style="cursor: pointer;">
<img src="images/opencircle.png" data-index="1" data-moveto="1" title="" style="cursor: pointer;">
<img src="images/closedcircle.png" data-index="2" data-moveto="2" title="" style="cursor: pointer;">
<img src="images/opencircle.png" data-index="3" data-moveto="3" title="" style="cursor: pointer;">
<img src="images/opencircle.png" data-index="4" data-moveto="4" title="" style="cursor: pointer;">
</div>
我想要这样
<div id="mygallery-paginate">
<img src="images/opencircle.png" class="one" data-index="0" data-moveto="0" title="" style="cursor: pointer;">
<img src="images/opencircle.png" class="two" data-index="1" data-moveto="1" title="" style="cursor: pointer;">
<img src="images/closedcircle.png" class="three" data-index="2" data-moveto="2" title="" style="cursor: pointer;">
<img src="images/opencircle.png" class="four" data-index="3" data-moveto="3" title="" style="cursor: pointer;">
<img src="images/opencircle.png" class="five" data-index="4" data-moveto="4" title="" style="cursor: pointer;">
</div>
请使用必要的 CSS/JS 提出建议