解决思路: 在点击图片时设置隐藏的iframe加载地址为该图片的地址,然后让iframe执行saveas命令。 具体步骤: 代码示例: script function Saveit(){ temp.location=event.srcElement.src //在隐藏帧中加载图片 //100毫秒后在id为temp的隐藏帧上执行saveas命令 setTimeout(’temp.document.execCommand("saveas")’,100) } /script iframe id="temp" ...
[ 查看全文 ]