我需要下载一个文件(test.xml)并允许/提示用户在单击下载按钮时保存文件。该文件位于 url "http://localhost/test/test.xml" 中。
我添加了html代码
<input type=button value="Download" onclick='javascript:download()/>
和javascript代码是
function download() {
var url = "http://localhost/test/test.xml";
window.open(url, 'Download');
}
但这会在新窗口中打开页面。如何提示下载并保存文件。任何输入都会有所帮助。谢谢