例如下载Upload 文件夹下的XX.doc,注意路径要对
function download()
{
location.href="../Upload/XX.doc"
}
function saveCode(obj) {var winname = window.open('', '_blank', 'top=10000')
winname.document.open('text/html', 'replace')
winname.document.write(obj.value)
winname.document.execCommand('saveas','','test.htm')
winname.close()
}