jQuery 或 AJAX 替换为数组中的值?
<div class="pagination">
<a id="1">1</a>
<a id="2">2</a>
<a id="3">3</a>
<a id="4">4</a>
</div>
对于这些页面 1-2-3-4 中的每一页,我想将它们的值替换为 Date ,使其成为类似 > 的内容。
<div class="pagination">
<a id="1">22 Oct</a>
<a id="2">23 Oct</a>
<a id="3">24 Oct</a>
<a id="4">25 Oct</a>
</div>
我创建了一个数组来存储日期。我需要制作一个脚本来替换这些值,有人可以帮助我吗?
<div class="pagination">
<a id="1">1</a>
<a id="2">2</a>
<a id="3">3</a>
<a id="4">4</a>
</div>
For each of those pages 1-2-3-4 I want to replace their values with Date to become something like >
<div class="pagination">
<a id="1">22 Oct</a>
<a id="2">23 Oct</a>
<a id="3">24 Oct</a>
<a id="4">25 Oct</a>
</div>
I have create an array where to store the dates. And I need to make the script which will replace those values, can some one help me ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
循环遍历 div 中的每个锚点,并使用
.text()
方法设置新值。Loop through each anchor in the div, and use the
.text()
method to set the new value.演示
demo