PHP+CMS+网站 · 2018年05月27号 0

做一个下载链接,链接到的是图片,如何才能点击链接 ,弹出的是下载对话框

[code]<a href=”xxx.gif” id=pic1 onclick=”savepic();return false;” style=”cursor:hand”>点击另存[要在同一域]</a>
<script>
function savepic(){
if(document.all.a1==null){
objIframe=document.createElement(“IFRAME”);
document.body.insertBefore(objIframe);
objIframe.outerHTML= “<iframe name=a1 style=’width:0;hieght:0′ src=”+pic1.href+”></iframe>”;
re=setTimeout(“savepic()”,1)
}
else{
clearTimeout(re)
pic = window.open(pic1.href,”a1″)
pic.document.execCommand(“SaveAs”)
document.all.a1.removeNode(true)
}}
</script>[/code]