我是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();
});