如何在没有“加载数据”按钮的情况下使用我的代码加载CSV文件?

时间:2019-04-24 19:16:11

标签: jquery ajax csv import datatable

我正在尝试使用此代码在我的数据表中显示CSV文件,但是如果没有“加载数据”按钮将无法显示。我正在尝试删除点击(功能),但是没有用。谢谢你的帮助! 这是我的代码:

<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>
 <div class="container">
   <div class="table-responsive">
    <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>


<script>
$(document).ready(function(){
 $('#load_data').click(function(){
  $.ajax({
   url:"http://gyogyszerek.cew.hu/datatable/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 += '<th>'+cell_data[cell_count]+'</th>';
      }
      else
      {
       table_data += '<td>'+cell_data[cell_count]+'</td>';
      }
     }
     table_data += '</tr>';
    }
    table_data += '</table>';
    $('#employee_table').html(table_data);
   }
  });
 });
 
});
</script>

1 个答案:

答案 0 :(得分:0)

删除

 $('#load_data').click(function(){

就足够了。

问题是您试图通过https位置加载http资源,出于安全原因,大多数现代浏览器都会阻止该操作。