1
想知道有人可以幫助我這個。csv html表與多個超鏈接
我使用這個例子CSV to HTML Table
我試圖格式的追加列作爲一個超鏈接,但老實說沒有JS技能將不勝感激的任何援助。下面的例子顯示了一列的代碼。
<script>
//my custom function that creates a hyperlink
function format_link(link){
if (link)
return "<a href='" + link + "' target='_blank'>" + link + "</a>";
else
return "";
}
//initializing the table
CsvToHtmlTable.init({
csv_path: 'data/Health Clinics in Chicago.csv',
element: 'table-container',
allow_download: true,
csv_options: {separator: ',', delimiter: '"'},
datatables_options: {"paging": false},
custom_formatting: [[4, format_link]] //execute the function on the 4th column of every row
});
</script>
那究竟是什麼問題?當你運行這段代碼時你會得到一個錯誤嗎? –
代碼是完美的。我只是要求協助修改它以在csv中將2列格式化爲超鏈接,而不是像例子中的1那樣。希望有所幫助。謝謝回覆。 我的csv數據有兩個超鏈接數據字段,我需要將結果表格格式化爲這樣。 –
該文檔說要使用數組的數組,所以它可能會是這樣的:custom_formatting:[[4,format_link],[6,format_link]] - 我添加了一個額外的數組來格式化第6列中的鏈接 –