我正在使用bootstrap 3进行项目。
<div data-target="#bs_id" data-toggle="modal" class="carousel-content" id="bs_id">
<div> There is a lot of content here </div>
<div> I like to show all of the content in a modal window </div>
</div>
我想要做的是点击ID为#34; bs_id&#34;并在模态窗口中显示其所有内容。我不知道如何引用自己,所以任何帮助都会受到高度赞赏,特别是动态的(使用jQuery&#39; s。),
谢谢,
米@ KM
答案 0 :(得分:0)
你已经将id和data-ref放在同一个标签中,它应该将id引用到div。 所以制作这样的结构它会起作用。
<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
Launch demo modal
</button>
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
</div>
答案 1 :(得分:0)
<div data-target="#bs_id" data-toggle="modal" class="carousel-content" >
<div class="content_wrapper modal fade" id="bs_id" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div> There is a lot of content here </div>
<div> I like to show all of the content in a modal window </div>
</div>
</div>