我正在尝试将一个文本文件加载到JQuery DataTables中。这是我为按下按钮设置的HTML。
<div style="text-align:center;padding:20px 0px 0px 0px;">
<span class="badge badge-info" style="font-size: 1.5rem; font-weight: 700;padding-bottom: 10px;margin-bottom: 20px;" id="txtFile">Get Registered Names</span>
</div>
这是我为实际的JQuery数据表设置的html
<div>
<table id="tblData" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>Name</th>
</tr>
</thead>
</table>
</div>
这就是我想使用的从文本文件加载表的JQuery
$(function (){
$('#txtFile').click(function() {
$('#tblNames').dataTable({
"ajax": 'registeredusers.txt',
"columnDefs":
[{
"data": "Name"
}]
});
});
});
此文件位于/var/www/html/
中,我希望在按下按钮事件时将其显示给用户。我该怎么做?
发布于 2021-03-15 23:41:34
你的registeredusers.txt应该有这样的数据,
{
"data": [
[
"jason",
],
[
"mark",
],
[
"Richard",
],
]
}
而且不能多次初始化datatable。因此,在创建datatable之前添加$("#tblData").dataTable().fnDestroy();
。
$(function (){
$('#txtFile').click(function() {
$("#tblData").dataTable().fnDestroy();
$('#tblData').dataTable({
"ajax": 'registeredusers.txt',
"columnDefs":
[{
"data": "Name"
}]
});
});
});
发布于 2021-03-15 22:41:00
您可以尝试从php文件获取内容
$data = file_get_contents('yourfile.txt');
然后获取这些数据并用您的行替换
https://stackoverflow.com/questions/66650107
复制相似问题