用于下载第二天csv文件的HTML代码

时间:2016-05-15 08:18:39

标签: javascript html csv

嗨我正在尝试使用html编码从网页下载文件。 网络链接= http://www.nrldc.org/WBS/injsch.aspx 如果我今天使用以下代码下载它,它工作正常。

<html>
<head>
    <title>view injection schedule</title>
</head>

<body onload=form1.submit()>
<form name="form1" method="post" action="http://www.nrldc.org/wbs/injsch.aspx" id="form1">
<div>

<input type="hidden" name ="__EVENTTARGET" id="__EVENTTARGET" value="download" />
<input type="hidden" name ="__EVENTARGUMENT" id="__EVENTARGUMENT" value="filename.csv" />
</div>

<script type="text/javascript">
//<![cdata[
var theform = document.forms['form1'];
if (!theform) {
     theform=document.form1;
}
function __dopostback(eventtarget,eventargument) {
if (!theform.onsubmit ||(theform.onsubmit() !=false)) {
theform.__eventtarget.value=eventtarget;
theform.__eventargument.value=eventargument;
theform.submit();
}
}
//]]>
</script>
</html>

现在在日期字段中我想选择明天日期然后下载csv。我无法做到。任何帮助/建议请。

1 个答案:

答案 0 :(得分:0)

可能会对您有所帮助:

demo example