0

当我使用它搜索我的域时http://domain.com,效果很好。但是,当我搜索它时,http://www.domain.com它不起作用。

     function dataTableInitialisation() {
      myOTable = $("#EmployeesTable").dataTable({
          "bProcessing": true,
          "bServerSide": true,
          "sAjaxSource": "/Employees/FetchDetails?Deptid=" + @model.Id + "&thresholdLow=4&threshold=100",
          "sPaginationType": "full_numbers",
          "bDestroy": true,
          "aaSorting": [[1, 'desc']],
          "asStripClasses": ['color01', 'color03'],
          "aoColumnDefs": [{
                  "aTargets": [2],
                  "bVisible": false
                  }, {
                  "aTargets": [1],
                  "fnRender": function (oObj) {
                  return "<a href='#showemployees' rel='" + oObj.aData[2] + "'></a>";
                  }
           }]
       });
    }
    });

当我搜索http://www.生成 2 个自动发出的 ajax 请求而不是一个。如何在 Jquery Datatable 中更正此问题?

4

0 回答 0