本文為大家詳細介紹下使用JS實現圖片直接下載具體實現代碼如下感興趣的朋友可以參考下哈希望對大家有所幫助
代碼如下
<a id=pic onclick=savepic();return false; >點擊下載</a>
代碼如下
<script type=
text/javascript
>
function savepic() {
if (document
all
a
== null) {
objIframe = document
createElement(
IFRAME
);
document
body
insertBefore(objIframe);
objIframe
outerHTML =
<iframe name=a
style=
width:
px;hieght:
px
src=
+ imageName
href +
></iframe>
;
re = setTimeout(
savepic()
)
}
else {
clearTimeout(re)
pic = window
open(imageName
href
a
)
pic
document
execCommand(
SaveAs
)
document
all
a
removeNode(true)
}
}
</script>
【責編:at
】
From:http://tw.wingwit.com/Article/program/Java/JSP/201311/19463.html