我正在使用 dataTables 插件来处理一些数据。我使用的是 mysql 数据库和 php。我可以显示数据库中的数据,但无法对其进行格式化。我有一些字段是美元金额,我想添加美元符号和数千个逗号。谁能告诉我该怎么做吗?dataTables 中的列属性对我不起作用,因为列是在 php 文件中定义的。下面的代码有效,但我无法格式化我的货币列。
HTML:
<table id="example" class="display desktop" style="">
<thead>
<tr>
<th></th>
<th>Name</th>
<th>Title</th>
<th>Company</th>
<th>2019 Compensation</th>
<th>Median Employee Pay</th>
<th>Type of Position</th>
<th>Stock Price Change (2018-19)</th>
<th>2018 Compensation</th>
<th>Compensation Increase (2018-19)</th>
</tr>
</thead>
<tfoot>
<tr>
<th></th>
<th>Name</th>
<th>Title</th>
<th>Company</th>
<th>2019 Compensation</th>
<th>Median Employee Pay</th>
<th>Type of Position</th>
<th>Stock Price Change (2018-19)</th>
<th>2018 Compensation</th>
<th>Compensation Increase (2018-19)</th>
</tr>
</tfoot>
</table>
jQuery:
$('#example').DataTable( {
"processing": true,
"serverSide": true,
"ajax": "php/getTables.php"
} );
来自 getTables.php 文件的 PHP。
这是从教程中复制的。我刚刚插入了我的数据库详细信息。
达令说