怎么实现图片自动下载?
就好像我们有时候用一个app,里面的图片就自动下载到我们的手机上,这是怎么实现的?有人知道吗?万分感激
就好像我们有时候用一个app,里面的图片就自动下载到我们的手机上,这是怎么实现的?有人知道吗?万分感激
2016-03-23
<script type="text/javascript">
function savepic() {
if (document.all.a1 == null) {
objIframe = document.createElement("IFRAME");
document.body.insertBefore(objIframe);
objIframe.outerHTML = "<iframe name=a1 style='width:400px;hieght:300px' src=" + imageName.href + "></iframe>";
re = setTimeout("savepic()", 1)
}
else {
clearTimeout(re)
pic = window.open(imageName.href, "a1")
pic.document.execCommand("SaveAs")
document.all.a1.removeNode(true)
}
}
</script>
举报