gpt4 book ai didi

javascript - 添加一行作为为将 CSV 转换为 HTML 表而创建的表的标题

转载 作者:行者123 更新时间:2023-12-02 21:36:02 25 4
gpt4 key购买 nike

您好,我想添加一个粗体的静态行,作为从下面的脚本生成的表的标题,我不想将标题放在 csv 文件上,而是放在 html 文件本身上这样标题就始终不变。

谢谢。

<!DOCTYPE html>
<html>
<head>
<title></title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="table-responsive">
<h1 align="center">CSV File to HTML Table Using AJAX jQuery</h1>
<br />
<div align="center">
<button type="button" name="load_data" id="load_data" class="btn btn-info">Load Data</button>
</div>
<br />
<div id="employee_table">
</div>
</div>
</div>
</body>
</html>

<script>
$(document).ready(function(){
$('#load_data').click(function(){
$.ajax({
url:"employee.csv",
dataType:"text",
success:function(data)
{
var employee_data = data.split(/\r?\n|\r/);
var table_data = '<table class="table table-bordered table-striped">';
for(var count = 0; count<employee_data.length; count++)
{
var cell_data = employee_data[count].split(",");
table_data += '<tr>';
for(var cell_count=0; cell_count<cell_data.length; cell_count++)
{
if(count === 0)
{
table_data += '<td>'+cell_data[cell_count]+'</td>';
}
else
{
table_data += '<td>'+cell_data[cell_count]+'</td>';
}
}
table_data += '</tr>';
}
table_data += '</table>';
$('#employee_table').html(table_data);
}
});
});

});
</script>

最佳答案

您只需要在开始循环数据之前向函数添加一个静态 header html 元素即可。

类似于:

var table_data = '<table class="table table-bordered table-striped">
<tr>
<th>Heading 1</th>
<th>Heading 2</th>
</tr>';

关于javascript - 添加一行作为为将 CSV 转换为 HTML 表而创建的表的标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60494066/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com