Ajax加载的内容,jquery插件无法正常工作

时间:2010-05-20 01:21:50

标签: javascript jquery ajax sorting tablesorter

我有一个调用ajax加载内容的链接,加载内容后,我的jquery函数不再起作用

这是我的HTML

 <a href="#" onclick="javascript:makeRequest('content.html','');">Load Content</a>
    <span id="result">
 <table id="myTable" valign="top" class="tablesorter">
        <thead>
          <tr>
            <th>Title 1</th>
            <th>Level 1</th>
            <th>Topics</th>
            <th>Resources</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td>Example title 1</td>
            <td>Example level 1</td>
          </tr>
          <tr>
            <td>Example title 2</td>
            <td>Example level 2</td>
          </tr>
        </tbody>
      </table>
</span>

使用http://tablesorter.com/docs/中的jquery table sorter插件对表进行排序 加载ajax内容后,将显示另一组具有不同数据的表。但是,排序不再有效。

这是我的ajax脚本,用于加载内容:

  var http_request = false;
   function makeRequest(url, parameters) {
      http_request = false;
      if (window.XMLHttpRequest) { // Mozilla, Safari,...
         http_request = new XMLHttpRequest();
         if (http_request.overrideMimeType) {
            // set type accordingly to anticipated content type
            //http_request.overrideMimeType('text/xml');
            http_request.overrideMimeType('text/html');
         }
      } else if (window.ActiveXObject) { // IE
         try {
            http_request = new ActiveXObject("Msxml2.XMLHTTP");
         } catch (e) {
            try {
               http_request = new ActiveXObject("Microsoft.XMLHTTP");
            } catch (e) {}
         }
      }
      if (!http_request) {
         alert('Cannot create XMLHTTP instance');
         return false;
      }
      http_request.onreadystatechange = alertContents;
      http_request.open('GET', url + parameters, true);
      http_request.send(null);
   }

   function alertContents() {
      if (http_request.readyState == 4) {
     // alert(http_request.status);
         if (http_request.status == 200) {
            //alert(http_request.responseText);
            result = http_request.responseText;
            document.getElementById('result').innerHTML = result;            
         } else {
            alert('There was a problem with the request.');
         }
      }
   }

知道如何在加载内容后让jquery插件工作? 我已经搜索并将jquery.tablesorter.js点击功能改为live(),就像这个$headers.live("click",function(e)一样,但它也没有用。

如何在加载内容后使jquery函数正常工作? 谢谢


更新测试脚本:

<a href="#" id="test" onClick="contentDisp()">Load Content</a>
<div id="result"></div>

<script type="text/javascript"> 
function contentDisp()
{
$.ajax({
url : "test.html",
success : function (data) {
$("#result").html(data);
$("#myTable").tablesorter();
$("#myTable").trigger("update"); 
}
});
}
</script> 

这是我的test.html。如果我没有将它放在加载的内容中,则表格排序有效。一旦它被加载到div,分类就不再起作用了。

<table id="myTable" valign="top" class="tablesorter">

    <thead>
      <tr>
        <th class="header">Title 1</th>
        <th class="header">Level 1</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>Example title 1</td>
        <td>Example level 1</td>
      </tr>
      <tr>
        <td>Example title 2</td>
        <td>Example level 2</td>
      </tr>
    </tbody>
  </table>      

1 个答案:

答案 0 :(得分:1)

您需要在插入表格数据后调用$("#myTable").trigger("update");

请查看this example on the tablesorter website,它可能会帮助您清理代码以加载内容。

如果您需要更多帮助/代码,请发表评论。 (我认为你最好把它弄清楚,而不是用勺子喂食,这就是为什么我不把它包括在里面。)