我正在通过以下循环迭代对象列表“notification”并获取每个通知对象的通知id,如:th = text =“* {n.id}”。我想使用Jquery在列表中插入id的列表。
<a href="#" th:each="n : *{notifications}">
<h4>
<span id="notification-id" th:text="*{n.id}"></span>
<p th:text="*{n.message}"></p>
</h4>
<small><i class="fa fa-clock-o"></i> 5 mins</small>
</a>
这是我的Jquery函数
$(document).ready(function () {
$("#notification-href").click(function () {
$("#notification-count").text('0');
var notificationId = $("#notification-id");
});
});
有人能告诉我一种可行的方法吗?