1. 程式人生 > >DIV區域性重新整理

DIV區域性重新整理

<script type="text/javascript">
    $(function () {
        setInterval(function () {
            $("#autore").load(location.href + " #autore");//注意後面DIV的ID前面的空格,很重要!沒有空格的話,會出雙眼皮!(也可以使用類名)
        }, 8000);//8秒自動重新整理
    })

</script>