在提交时避免在jsp中自动刷新页面。

时间:2014-03-25 09:46:25

标签: jquery jsp datatable

我有一个jsp视图页面,它使用datatable来显示使用serverSideSearch操作的数据列表。在jsp页面上,我有一个表单用于选择日期和其他一些字段,然后是Generate按钮用于显示数据表。现在的问题是,每当我点击Generate按钮时,它会刷新页面然后显示数据表。我不想刷新页面,数据表必须带来刷新的数据表。这是我的jsp文件:

<%@ page contentType="text/html; charset=ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<%@ taglib prefix="sj" uri="/struts-jquery-tags"%> 
<%@ taglib prefix="display" uri="http://displaytag.sf.net" %>
<html>
<head>

<script type="text/javascript">
    $(document).ready(function() {
         if('${pageVisitLogList}' == 'undefined' || '${pageVisitLogList}' == '[]' || '${pageVisitLogList}' == ''){
            $('.container').css('text-align', 'center');
        } 

         var dataTable; //reference to your dataTable

         $('#submitPageLog').click(function() {
             dataTable.fnReloadAjax('pageVisitReport.jsp');
         });

         dataTable= $('#row').dataTable(
        {
            "sDom" : "<'row'<'spanPag'l><'span6'p><'spanSer'f>r>t<'row'<'spanPage'i><'span6'p>>",
            "oLanguage" : {"sLengthMenu" : "_MENU_ records per page"},
            "bServerSide": true,
            "sAjaxSource": "serverSideSearch.action?dateFrom="+$('#fromDate').val()+"&dateTo="+$('#toDate').val(),
            "bProcessing": true,
            "sPaginationType": "full_numbers",        
            "aoColumns": [
                              { "mDataProp": "deviceMacAddress" },
                              { "mDataProp": "deviceName"},
                              { "mDataProp": "facility"},
                              { "mDataProp": "visitTime"},
                              { "mDataProp": "module"},
                              { "mDataProp": "pageVisited"}, 

                          ]   

        }); 


        $("#fromDate").datepicker({
         showOn: 'both',
         buttonImage: "Reports/resources/images/calendar.gif",
         buttonImageOnly: false,
         changeMonth: false,
         changeYear: false,
         showAnim: 'slideDown',
         duration: 'fast'
        });

        $("#toDate").datepicker({
         showOn: 'both',
         buttonImage: "Reports/resources/images/calendar.gif",
         buttonImageOnly: false,
         changeMonth: false,
         changeYear: false,
         showAnim: 'slideDown',
         duration: 'fast'
        });
        $('.ui-datepicker-trigger').css('margin-bottom', '11px');
    });
</script>
<style type="text/css">
    a {
        color: #047CB9;
        text-decoration: none;
    }
</style>
</head>

<body>
<br><br>
  <s:form id="pageVisitLogForm" theme="simple" method="post" >
    <div class="innerTableClass">
    <table align="center" class="table" style="line-height: 2;">
  <tr>
    <td colspan="4" class="searchHeader">Page Visit Report</td>
  </tr>
  <tr>
    <td align="left" colspan="4" class="required"><s:actionerror cssClass="required"/></td>
  </tr>
  <tr>
    <td align="left" style="padding-top: 13px;">Date From</td>
    <td><s:textfield id="fromDate" name="dateFrom" cssStyle="width: 170px; margin-right: 2px;" readonly="true"></s:textfield></td>
    <td align="left" style="padding-left:70px; padding-top: 13px;">Date To</td>
    <td><s:textfield id="toDate" name="dateTo" style="width: 170px; margin-right: 2px;" readonly="true"></s:textfield></td>
  </tr>
  <tr>
    <td align="left" style="padding-top: 13px;">Module</td>
    <td><s:select id="modulePageLog" list="moduleMap" name="module"/></td>
    <td align="left" style="padding-left:70px; padding-top: 13px;"> MAC Address</td>
    <td> <s:textfield name="deviceMacAddress"></s:textfield> </td>
  </tr>
  <tr>
    <td align="left" style="padding-top: 13px;">Facility</td>
    <td ><s:select list="facilityMap" name="facility" /></td>
    <td align="left" style="padding-left:70px; padding-top: 13px;"> App Mode</td>
    <td ><s:select list="appModeMap" name="appMode" /></td>
  </tr>
  <tr>
    <td align="left" style="padding-top: 13px;">Locale</td>
    <td ><s:select list="localeMap" name="currentLocale" /></td>
    <td></td>
    <td></td>
  </tr>
  <tr>
    <td colspan="4" align="center">
      <s:submit id="submitPageLog" key="label.fetchReport"  action="serverSideSearch.action" />
    </td>
  </tr>
</table>    
</div>
 </s:form>
 <br/><br/>
<div class="container">

        <table id="row" >
            <thead>
                <tr>
                    <th>MAC Address</th>
                    <th>Device Name</th>
                    <th>Facility</th>
                    <th>Visit Time</th>
                    <th>Module</th>
                    <th>Page Visited</th>

                </tr>
            </thead>
            <tbody>
            </tbody> 
        </table>
       </div>
  </body>
  </html>

我搜索并尝试使用fnReloadAjax(),但它不起作用。页面令人耳目一新......

1 个答案:

答案 0 :(得分:1)

首先应该尝试一个简单的Ajax示例并尝试理解它。您可以参考:A Simple AJAX with JSP example

或者可能是更精致的东西,这肯定会有所帮助 http://www.codecoffee.com/articles/ajax.html