bootstrap 3 modal window not working

做~自己de王妃 提交于 2019-12-04 14:15:58

Try to change your anchor code into:

<a data-toggle="modal" data-target="#deleteMessage" class="btn btn-danger btn-sm"><span class="glyphicon glyphicon-remove"></span> Удалить</a>

It looks like there is a typo in the tutorial, there should be additional "#" in the data-target attribute.

You forgot to include # into data-target attribute

<a data-toggle="modal" data-target="#deleteMessage" class="btn btn-danger btn-sm"><span class="glyphicon glyphicon-remove"></span> Удалить</a>

Live DEMO

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!