私はファイルを渡したいと思うダウンロードURL Bootstrap Modalリンクをクリックすると、Bootstrap Modalに名前、emailaddressなどの情報を入力した後にフッターボタンをクリックしてダウンロードしたいどのように私はこれを達成することができますか?ダウンロードURLをBootstrap Modalにダウンロード
-1
A
答えて
0
これを実行する方法はたくさんあります。基本的には、ダウンロードしたいフォーマットに依存します。 .txt
ファイルとしてダウンロードする簡単な例は以下のとおりです。
HTML:
<textarea>some text here to downlaod</textarea>
<p><a href="#">Export</a></p>
のjavascript:
var container = document.querySelector('textarea');
var anchor = document.querySelector('a');
anchor.onclick = function() {
anchor.href = 'data:text/plain;charset=utf-8,' + encodeURIComponent(container.value);
anchor.download = 'export.txt';
};
1
私はあなたの質問についての権利だ場合、私は知りませんが、あなたは単にモーダルのフッターのボタンをトリガーするために作りますダウンロード機能私のサンプルdemoを参照してください。私はあなたの質問について理解した内容
EDIT
は、ユーザーがリンクをクリックしたときに、モーダルは、その後表示され、モーダルのフッターに直接ダウンロードボタンだっただろうです。私のデモでは、モーダルをユーザーにただちに確認するようにしました。
HTML
<!-- Button that acts as a link and triggers the modal to open -->
<button class="btn btn-link" data-toggle="modal" data-target="#myModal">Download</button>
<!-- Prompt modal. Notice that this is just a confirmation for downloading the file -->
<div id="myModal" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Download</h4>
</div>
<div class="modal-body">
<p>Do you really want to download the file?</p>
</div>
<div class="modal-footer">
<!-- The download button -->
<a href="http://s1.picswalls.com/wallpapers/2014/08/08/scottish-landscape-hd_015751702_152.jpg" download>
<button type="button" class="btn btn-primary">DOWNLOAD</button>
</a>
<button type="button" class="btn btn-default" data-dismiss="modal">CLOSE</button>
</div>
</div>
</div>
</div>
読むthisはdownload
属性の詳細を知っています。
関連する問題
- 1. rails bootstrap modal partial
- 2. BootStrap Javascript Modal
- 3. bootstrap modal photo gallery
- 4. Bootstrap Modal with WTF
- 5. Rails - bootstrap modal submit
- 6. PHPでダウンロードmysqlエクスポートのダウンロードURL
- 7. Twitter Bootstrap Modal not working
- 8. Twitter Bootstrap Modal data-dismiss
- 9. angle 2 ng-bootstrap modal
- 10. Ember.js with Twitter Bootstrap Modal
- 11. Twitter bootstrap modal inドロップダウン
- 12. asp login in bootstrap modal
- 13. Socket.IO update bootstrap modal data
- 14. Twitter Bootstrap Modal Form Submit
- 15. Bootstrap Modal - >左右にスワイプ
- 16. AFNetworking urlからダウンロード
- 17. urlからmp3をダウンロード、ph
- 18. AndroidでソースURLをダウンロード
- 19. Qt - URLからデータをダウンロード
- 20. s3からurlをダウンロード
- 21. URLからPDFファイルをダウンロード
- 22. Rails、Bootstrap Modal、モーダルオープンのトリガーコード
- 23. React-Bootstrap Modalの使い方
- 24. modal bootstrap form edit in codeigniter
- 25. ng2-bootstrap modal in Angular2 rc5
- 26. Bootstrap-modalのポップアップをフラッシュに貼る
- 27. FirebaseストレージのダウンロードURLフォーマット
- 28. URLからのファイルのダウンロード
- 29. NSURLConnectionとURLダウンロードの質問
- 30. URLからのXMLのダウンロード
URLをBootstrap Modalに渡したいですか?それをどうやって実装するのですか? –