如何使用JQuery创建列表并插入Thymeleaf迭代循环中的对象?

时间:2017-10-03 10:53:41

标签: javascript jquery loops thymeleaf

我正在通过以下循环迭代对象列表“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");
    });
});

有人能告诉我一种可行的方法吗?

0 个答案:

没有答案