如何在3秒后打开一个模态?

时间:2017-04-15 07:29:30

标签: php html css

代码:

<script>
   $(document).ready(function()
     {
       setInterval(function() 
         {
           $('#contact').modal();
         }, 3000);
     });
</script>

html代码:

<a href="#contact"><h4><i class="fa fa-phone"></i>Contact Us</h4></a>
<div id="contact" class="modalDialog">
<div> 
  <a href="#close" title="Close" class="close">X</a>
    <h2>Thanks For Visiting Us</h2>
    <form method="post">
      <input type="text" name="name" id="name" placeholder="Enter Your Name">
      <input type="text" name="email" id="email" placeholder="Enter Your Email">
      <input type="text" name="phone" id="phone" placeholder="Enter Your Phone">
      <input type="text" name="message" id="message" placeholder="Enter Your Message">
      <input name="captcha_code" type="text" value="" placeholder="Enter the code">
      <img src="captcha.php" id="capImage"/>
      <br/>Can't read the image? click here to  <a href="javascript:void(0);" onclick="javascript:$('#capImage').attr('src','captcha.php');">refresh</a>.
      <input type="submit" name="insert" id="insert" value="Submit" placeholder="Enter Your Message" >
  </form>
</div>

我想在页面加载后3秒模态将打开。在这里,我使用setinterval方法在3秒后打开模态,但它不能。那么,如何使用setinterval方法在3秒后打开模态?

谢谢

2 个答案:

答案 0 :(得分:1)

首先要确保你已经包含了bootstrap.min.js

此html中的更改

    id="contact" class="modalDialog"    

    id="contact" class="modal"    

使用.modal()函数时,该模型的主类应为“模态”。 您的脚本功能正常,只需更改类。

答案 1 :(得分:0)

使用setTimeout函数

$(window).on('load', function($) {
    setTimeout(function(){
   $('#contact').modal();
 }, 3000);
  })