我想實現我的代碼的jQuery filedownload但我使用本地系統作爲我的文件系統來下載文件有人可以幫助我在這方面,我是新來的jQuery或預期它不工作而是提供一個工作代碼。jQuery的filedownload無法下載
<%@頁語言= 「Java」 的的contentType = 「text/html的;字符集= ISO-8859-1」 的pageEncoding = 「ISO-8859-1」 %>
$(document).on("click", "a.fileDownloadSimpleRichExperience", function() {
$.fileDownload($(this).prop('href'), {
preparingMessageHtml: "We are preparing your report, please wait...",
failMessageHtml: "There was a problem generating your report, please try again."
});
return false; //this is critical to stop the click event which will trigger a normal file download!
});
</script>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<a href="E://Download/Anshuman.txt" class="fileDownloadSimpleRichExperience">Download</a>
</body>
</html>
控制檯上的任何錯誤消息? –