0

我正在制作一个网站画廊,我希望下载按钮自动开始下载图像。

我的代码如下:

<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>
4

1 回答 1

1

尝试这个:

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

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

<a download='image.jpg'>Download</a>
于 2013-10-15T21:55:31.153 回答