admin管理员组文章数量:1434805
I am designing a website where i have put the modal for signup that when the user click on signup button the modal will came up but here in my website modal is working properly but content in it is not clickable please help me out.Here is my coding.
<li><a href="#show" id="showup">signup</a></li>
<div class="modal hide fade" id="show">
<div class="modal-header">
<button class="close" data-dismiss="modal">×</button>
<h1>Tittle</h1>
</div>
<div class="modal-body">
<p>The modal Body</p>
</div>
<div class="modal-footer">
<a href="" class="btn">Close</a>
</div>
</div>
And the java script i have written for it is here.
<script src=".9.1.min.js"></script>
<script src="js/bootstrap.js"></script>
<script type="text/javascript">
$("#showup").click(function(){
$("#show").modal();
});
</script>
The screenshots of modal will be helpful for understanding me.
I am designing a website where i have put the modal for signup that when the user click on signup button the modal will came up but here in my website modal is working properly but content in it is not clickable please help me out.Here is my coding.
<li><a href="#show" id="showup">signup</a></li>
<div class="modal hide fade" id="show">
<div class="modal-header">
<button class="close" data-dismiss="modal">×</button>
<h1>Tittle</h1>
</div>
<div class="modal-body">
<p>The modal Body</p>
</div>
<div class="modal-footer">
<a href="" class="btn">Close</a>
</div>
</div>
And the java script i have written for it is here.
<script src="http://code.jquery./jquery-1.9.1.min.js"></script>
<script src="js/bootstrap.js"></script>
<script type="text/javascript">
$("#showup").click(function(){
$("#show").modal();
});
</script>
The screenshots of modal will be helpful for understanding me.
Share Improve this question asked Jan 13, 2014 at 14:08 VickyVicky 9822 gold badges11 silver badges30 bronze badges 2- Where are you getting the bootstrap CSS from? – iambriansreed Commented Jan 13, 2014 at 14:33
- This problem occurred on me when i had an open div tag and was missing the closing tag. So people be careful on your html formatting – csandreas1 Commented May 12, 2018 at 23:12
2 Answers
Reset to default 1These are good login modal example, you can see them to see how they were written :
- Modal with tabbed content
- Login form in a modal
use anyone of them the normal way you put your modal please see this see this link for more explanation: modal
i hope they will help you.
Try to use something like:
.modal {
z-index: 10000;
}
It's probably because the z-index
of your modal is lower than the z-index
of other element. So try to use firebug or chrome inspector tools to figure it out
版权声明:本文标题:javascript - bootstrap modal is coming up properly but not showing the content in it properly? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745640912a2667850.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论