0

我有一个包含一个表的 jsp,该表显示了一些来自数据库的数据。现在我只想每 30 秒刷新一次表格。请帮我解决这个问题。请找到以下代码。

注意:我不想刷新整个页面。只有我想刷新jsp中的表格。

empDetails.jsp

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<html>
<body>
<center><h2>Employee Details</h2></center>
<form>
<center>
<div id="loadData">
<table border="2">
    <c:if test="${!empty empDetails}">

            <tr>
                <th>Employee ID</th>
                <th>Employee Name</th>
                <th>Salary</th>
                <th>Department</th>
            </tr>

            <c:forEach items="${empDetails}" var="emp">
                <tr>
                    <td><c:out value="${emp.empId}"/></td>
                    <td><c:out value="${emp.empName}"/></td>
                    <td><c:out value="${emp.salary}"/></td>
                    <td><c:out value="${emp.department}"/></td>
                </tr>
            </c:forEach>
    </c:if>
    </table>
    </div>
    </center>
</form>
</body>
</html>
4

1 回答 1

0
function refreshFunction(){
  $.ajax({
     url: '/page.html',  //page or method that will return html
     success: function (data) {
         $('div#loadData').html(data);
     }
  });
}

setInterval(refreshFunction, /*interval*/)

See $.ajax, it has a lot of useful parameters.

于 2013-04-30T07:52:24.097 回答