Javascript - jtable不会通过在click事件中调用来显示

时间:2013-09-29 02:36:58

标签: javascript jquery-jtable

我是JavaScript的新手。使用jtable时遇到问题。请帮忙!

以下是我的情况:我使用jtable

创建一个表
 $(document).ready(function (){

 $("#roomlist").click(function(){  
    $("#content").empty().append(
    '<div class="filtering">find: <input type="text" name="name" id="name" /><button type="submit" id="LoadRecordsButton">search</button></div>'
    ).jtable({  
        title: 'roomlist',  
        paging: true,  
        pageSize: 2,  
        sorting: true,  
        defaultSorting: 'name ASC',  
        actions:{  
            listAction: base_url+'index.php/role/leader/listroom'  
        },  
        ajaxSettings: {  
          type: 'POST',  
          dataType: 'json'    
        },fields:{  
            uuid:{  
              key:true,    
              list:false  
            },  
            city:{  
              list:false    
            },    
....  
页面加载时

自动加载表:
    $('#roomlist').click

但是当我尝试使用其他链接加载表格时,我的表格不会显示:

$('#another_link').click(function(){    
    $('#roomlist').click();
});

0 个答案:

没有答案