我有一个提交下载文件后的表单.我想自动而不是自动下载文件..显示模态对话框并显示下载链接.
<form name="softwareform" id="softwareform" action="../downloadlink.php" method="POST" align="left">
<div class="input-group margin-bottom-sm">
<span class="input-group-addon">
<i class="fa fa-windows fa-fw"></i>
</span>
<input class="form-control" type="text" placeholder="Software Title" name="softtitle" id="softtitle">
</div>
<button type="submit" class="btn btn-primary" >
<i class="fa fa-cogs"></i>Download File
</button>
</form>
Run Code Online (Sandbox Code Playgroud)
在下载link.php中,我使用标题重定向到下载文件.这是我想要显示的模态对话框.
<div class="modal fade bs-modal-sm" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog modal-sm">
<div class="modal-content" id="dialog-download">
<br/><br/>
<h2>Your Download is ready.</h2>
<hr/>
Your Download link is here <br/>
</div>
</div>
</div>
Run Code Online (Sandbox Code Playgroud)
如何在表单提交后显示此对话框?提前致谢