进阶的ajax——ajax实现临时文件下载

通过a标签 <a target="_blank" href="//www.xxx.com/download/file.txt" download="file">下载</a> 复制代码 通过form表单 <form action='/download' method='post'> <input type="text" name="name" value="file"/> ...