1
var url = "${path}/MaterialStockedAnalysisExport.action?type=byCompany";
url += "&startMonth=" + startMonth + "&endMonth=" + endMonth + "&materialStr=" +
escape(encodeURIComponent(materialStr)) + "&companyStr=" +
escape(encodeURIComponent(companyStr));
alert(url);
window.open(url);
我想通過window.open(url)
方法下載文件,但參數非常多,動作無法接收。有沒有解決方案在jQuery中或通過表單提交?是否有另一種方式來下載jquery或表單提交文件?
它的工作原理!與表格一起提交。非常感謝你! – TreasureNow