モーダルを開くことができません。私はBootstrap 4のサイトで見つかった単純なHTMLを試してから、いくつかのJavascriptを使用しました。私は本当に何が間違っているのか分かりません。どんな助けも非常に高く評価されるでしょう!ブートストラップ4モーダルがクリックで開かない
enter code here
<
<div class="col-sm-3 col-centered boxes" id="box1">
<button type="button" class="btn btn-primary" id="box1modal" data-toggle="modal" data-target="#exampleModal">
See More
</button>
<!-- Modal -->
<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">Wedding Invites</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<img src="Wedding%20Invites.jpg">
</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>
</div>
`enter code here`<script type="text/javascript">
enter code here
$( "#のbox1modal"()関数(イベント){
enter code here
$( '#のmyModal')をクリックし、モーダル( 'ショー');。。 enter code here
)};
ありがとうございました。それはうまくいった!私はそれを理解しようと多くの時間を費やしたとは信じられない! – cerawebdesign