admin管理员组文章数量:1345584
I want my modal to show as a popup after every 5 seconds without triggering the button, but I am unable to do it. I used jquery function show and setTimeout but it works only the first time the page is loaded
This is my jquery:
<script>
$(document).ready(function(){
setTimeout(function(){
$('#myModal').modal('show');
}, 2000);
});
</script>
My Modal:
<button type="button" class="btn btn-info btn-lg" data-toggle="modal" data-target="#myModal">Open Modal</button>
<!-- Modal -->
<div class="modal fade" id="myModal" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Modal Header</h4>
</div>
<div class="modal-body">
<p>Some text in the modal.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
I want it to open after every 5 seconds Please help
I want my modal to show as a popup after every 5 seconds without triggering the button, but I am unable to do it. I used jquery function show and setTimeout but it works only the first time the page is loaded
This is my jquery:
<script>
$(document).ready(function(){
setTimeout(function(){
$('#myModal').modal('show');
}, 2000);
});
</script>
My Modal:
<button type="button" class="btn btn-info btn-lg" data-toggle="modal" data-target="#myModal">Open Modal</button>
<!-- Modal -->
<div class="modal fade" id="myModal" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Modal Header</h4>
</div>
<div class="modal-body">
<p>Some text in the modal.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
I want it to open after every 5 seconds Please help
Share Improve this question asked Feb 26, 2018 at 7:43 juhijuhi 5781 gold badge10 silver badges23 bronze badges 2-
2
use
setInterval
– Arun Ghosh Commented Feb 26, 2018 at 7:44 - Thanks it worked!! – juhi Commented Feb 26, 2018 at 7:52
4 Answers
Reset to default 5Try this
setInterval(function () {
$('#myModal').modal('show');
}, 5000);
The setInterval() method will continue calling the function until clearInterval() is called, or the window is closed.
Use setInterval
and 5000
as 2000 is 2 seconds.
setInterval
is "repeat this function every N miliseconds".
setTimeout
is "execute this function once after N miliseconds"
setInterval(function () {
console.log('Modal.show()');
}, 5000);
You can try with recursive setTimeout
instead setInterval
because the setTimeout
schedules ensure the next call right at the end of the current one.
The recursive setTimeout
is a more flexible method than setInterval. This way the next call may be scheduled differently, depending on the results of the current one:
$(document).ready(function(){
setTimeout(function showModal() {
$('#myModal').modal('show');
setTimeout(showModal, 5000);
}, 5000);
});
Try using 5000 inside setInterval instead of 2000 since 5000 is 5 seconds
本文标签: javascriptShow modal after every 5 secondsStack Overflow
版权声明:本文标题:javascript - Show modal after every 5 seconds - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743754526a2533265.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论