下载按钮自动开始下载图像

时间:2013-10-15 21:49:54

标签: html download

我正在网站库中工作,我希望下载按钮能够自动开始下载图像。

我的代码如下:

<form id='agreeform' method='post' action='images/gallery/cards/t_01.jpg'>

<p>Terms and conditions go here.</p>

<div id='remositorylicenseagree'>

<input name='agreecheck' type='checkbox' onclick='enabledl()' /><strong>I agree to the above terms.</strong>

<input class="button" id='remositorydlbutton' type="submit" value="Download" />

<input type="hidden" name="da" value="40a7068dfda9732133af1ec9254fc94e" />

</div>

</form>

1 个答案:

答案 0 :(得分:1)

试试这个:

<form method="get" action="image.jpg">
<button type="submit">Download</button>
</form>

或者,您可以尝试使用新的HTML5下载属性:

<a download='image.jpg'>Download</a>