我正在尝试使用json格式的静态数据创建数据表,而不通过ajax请求访问服务器来获取json源数据。 试图找到一种方法,但没有运气。是否可以使用静态json数据变量进行,如下所示,
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery DataTable</title>
<link rel="stylesheet" href="jquery-ui.css">
<link rel="stylesheet" type="text/css" href="demo_table_jui.css" />
<link rel="stylesheet" type="text/css" href="jquery-ui-1.7.2.custom.css" />
<script src="jquery-1.10.2.js"></script>
<script src="jquery-ui.js"></script>
<script type="text/javascript" src="complete.min.js"></script>
<script type="text/javascript" src="jquery.dataTables.min.js"></script>
<script>
$(function() {
var jsonData = [{"userID":"1","userName":"name1"},{"userID":"2","userName":"name2"},{"userID":"3","userName":"name3"}];
$('#example').dataTable({
data: jsonData,
columns: [
{ data: 'userID' },
{ data: 'userName' }
]
});
});
</script>
</head>
<body>
<table cellpadding="0" cellspacing="0" border="0" class="display" id="example" align="center">
<thead>
<tr>
<th>UserID</th>
<th>userName</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</body>
</html>
请举例说明这样做。提前谢谢。
答案 0 :(得分:7)
通过在$(function(){})
中包含您的JS代码,它将在您创建<table>
之前运行。因此,您必须:1。将该代码放在<body>
的末尾; 2.放入$(document).ready();
$(document).ready(function(){
var jsonData = [{"userID":"1","userName":"name1"},{"userID":"2","userName":"name2"},{"userID":"3","userName":"name3"}];
$('#example').dataTable({
data: jsonData,
columns: [
{ data: 'userID' },
{ data: 'userName' }
]
});
});