使用Jquery自动重新加载div(不重新加载文件.php)

时间:2015-04-14 09:25:38

标签: jquery

我正在使用此代码点击重新加载div。 “div1-wrapper”,你能帮忙编辑吗?我希望它在5秒内自动重新加载而无需点击。 谢谢你。

<script src="http://code.jquery.com/jquery-latest.js"></script> 
    <script> 
        $(document).ready(function() 
        { 
        $('#simple-post').on('click', function() { 
            var url = '#';  
            $('.div1-wrapper').load(url + ' .div1'); 
         }); 
        }); 
    </script> 


    </head> 
    <body> 
        <br /> 
    <div class="div1-wrapper"> 
        <div class="div1">    
            <?php echo rand(10,100); ?> 
        </div> 
     </div> 

1 个答案:

答案 0 :(得分:1)

 <script src="http://code.jquery.com/jquery-latest.js"></script> 
    <script> 
    (function($){
        $(function(){
            setInterval(function() {
                var url = '#';  
                $('.div1-wrapper').load(url + ' .div1'); 
            }, 5000);
        }); 
     })(jQuery);
    </script>
</head> 
<body> 
    <br /> 
<div class="div1-wrapper"> 
    <div class="div1">    
        <?php echo rand(10,100); ?> 
    </div> 
 </div>