0
<i class="fa fa-plus-square-o" aria-hidden="true" style="font-size: 45px; cursor: pointer;"></i>
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Modal title</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
どうすればこのボタンをモーダルにすることができますか?私はこのボタンを使って作業していたので、ユーザーがクリックしてモーダルビューを開くことができました。あなたは、ボタンの属性データトグルとデータ・ターゲットが欠落している新しい投稿の更新ボタン
に続いて、あなたのモーダルクラス外
を言ってくださいフレームワークは既にイベントをトリガするのに必要な属性を提供しています。あなたは余分な不要なJavaScriptを利用しています。 –