$(document).ready(function () {
function exportTableToCSV($table, filename) {
var $rows = $table.find('tr:has(td)'),
// Temporary delimiter characters unlikely to be typed by keyboard
// This is to avoid accidentally splitting the actual contents
tmpColDelim = String.fromCharCode(11), // vertical tab character
tmpRowDelim = String.fromCharCode(0), // null character
// actual delimiter characters for CSV format
colDelim = '","',
rowDelim = '"\r\n"',
// Grab text from table into CSV formatted string
csv = '"' + $rows.map(function (i, row) {
var $row = $(row),
$cols = $row.find('td');
return $cols.map(function (j, col) {
var $col = $(col),
text = $col.text();
return text.replace(/"/g, '""'); // escape double quotes
}).get().join(tmpColDelim);
}).get().join(tmpRowDelim)
.split(tmpRowDelim).join(rowDelim)
.split(tmpColDelim).join(colDelim) + '"',
// Data URI
csvData = 'data:application/csv;charset=utf-8,' + encodeURIComponent(csv);
$(this)
.attr({
'download': filename,
'href': csvData,
'target': '_blank'
});
}
// This must be a hyperlink
$(".export").on('click', function (event) {
// CSV
exportTableToCSV.apply(this, [$('#dvData>table'), 'export.csv']);
// IF CSV, don't do event.preventDefault() or return false
// We actually need this to be a typical hyperlink
});
});
此代码将HTML表格转换为CSV文件。我不明白这两行:
function (i, row) {
和
function (j, col) {
什么是'我'和' j'?它们不在函数内的任何地方使用,也没有循环,所以这些变量在哪里使用。它们是否在“地图”中使用?功能?
答案 0 :(得分:1)
function (i, row) { function (j, col) {
这些行是函数声明。这些功能是匿名的。 i
和j
是传递给函数的参数的名称。它们可能不会被使用,但仍需要作为第一个参数的名称传递给它们。
有关如何调用回调的说明,请参阅jQuery.map
的文档。
答案 1 :(得分:0)
jquery map函数需要一个带有两个参数的回调,即元素的索引和元素。 因此$ rows.map(function(i,row){...});将在第一个参数中接收行(0,1 ...)的索引,在第二个参数中接收行本身。
如果从函数调用中删除i,则只映射第一个值,因此,行而不是接收行的值,将接收索引(0,1 ....)
顺便说一下。映射是(行,索引),因此映射错误(回调定义中为check here) 如果他们的独立功能将是这样的
void map($rows)
{
$arr = [];
for($i=0; $i<$rows.length; $i++)
{
$arr.push(mapping_function($i,$rows[i]));
}
return $arr;
}
void mapping_function($i, $row)
{
...
}