假设我在一个页面上有一个名为“点击下载”的锚标签,点击该标签会下载一个 csv 文件
HTML代码是
<span id="tag_id">
<a class="classA" onclick="calling_an_excel_function()" href="#"> Click here to download all records.</a>
</span>
实际上它是调用 Javascript Onclick 函数并生成一个 csv 文件,onclick 函数的代码是
function calling_an_excel_function() {
var exampleA = document.getElementById('exampleA.value');
var exampleB = document.getElementById('exampleB.value');
var exampleC = document.getElementById('exampleC.value');
var exampleD = document.getElementById('exampleD.value');
window.open('indices_main_excel.aspx?ind=' + exampleA.value + '&fromDate=' + exampleB.value + '&toDate=' + examplec.value + '&DMY=' + exampleD.value, '_blank',
'toolbar=yes,location=no, directories=no, status=no, menubar=yes,scrollbars=yes, resizable=yes ,copyhistory=no, width=800, height=600');
}
我可以预期在 onclick 函数中window.open()方法正在生成一个新文件,并给出了一些值。现在我无法从上面的 onclick 函数中获取csv文件下载url我可以知道如何获取 csv 文件下载链接吗