Chrome浏览器上一个Google调查问卷式的表,点击提交后如图所示。
将
<form id="form_downld" method="post" action="xxxxxurl">
中的action用js去动态的设置:
function toDownload(taskNo,fileId) {
$("#dow_taskNo").val(taskNo);
$("#dow_fileId").val(fileId);
document.form_downld.action='report/xxxxxurl?'+new Date().getTime();
document.form_downld.submit();
}