Javascript allows the client to be compatible with the methods used to create and download csv files from various browsers. javascriptcsv

Source: Internet
Author: User

Javascript allows the client to be compatible with the methods used to create and download csv files from various browsers. javascriptcsv

This example describes how to use javascript to create and download csv files from different browsers. Share it with you for your reference. The specific implementation method is as follows:

$("#radarDLBut").click(function(){var data = [displayData["radar_chart"]["r_label"],displayData["radar_chart"]["r_default"]]; var csvContent = "data:text/csv;charset=utf-8,\ufeff";if (window.navigator.msSaveOrOpenBlob) {  csvContent = "\ufeff";}data.forEach(function(infoArray, index){  dataString = infoArray.join(",");  csvContent += index < data.length ? dataString+ "\n" : dataString;});if (window.navigator.msSaveOrOpenBlob) {  // if browser is IE  var blob = new Blob([decodeURIComponent(encodeURI(csvContent))],{ type: "text/csv;charset=utf-8;"  });  navigator.msSaveBlob(blob, 'subject.csv');}else{  var encodedUri = encodeURI(csvContent);  var link = document.createElement("a");  link.setAttribute("href", encodedUri);  link.setAttribute("download", "subject.csv");  document.body.appendChild(link);  link.click();}});

I hope this article will help you design javascript programs.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.