LoginSignup
0
1

More than 5 years have passed since last update.

bootstrapでdata-toggle="modal"でモーダルが開かない時に確認すべきこと

Last updated at Posted at 2016-09-07

症状

以下の様なボタンでモーダルウインドウが開かない。

<button type="button" class="btn btn-default" data-toggle="modal" data-target="#myModal">open modal</button>

ただし、jsからは開く

$('#myModal').modal()

対処法

<script type='text/javascript' src='js/bootstrap.js'></script>

となっていたら、

 <script src='js/bootstrap.js'></script>

とする。

wordpress利用時に wp_enqueue_script() でbootstrap.jsをロードしていると type=付きで呼び出ししてしまうのでこの問題に陥ります。

参考

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1