1

当我去我的移动网站的上一页时,我想及时刷新页面。

当我在我的 javascript 脚本中添加下面的代码时,它会一直刷新页面。

    <script type="text/javascript">
        window.location.reload();
    </script>

我在我的 php 文档中试过这个:

<body onload="document.refresh();">   

但是,还是不行。有任何想法吗?

我想刷新它,因为我正在修改悬停时“.transparent_font”类的不透明度。这是我的代码:

 <script type="text/javascript">
    $(document).ready(function(){
    //window.location.reload();
    //$(".transparent_font").css({'opacity' : '0'});
    //$(".thumbnail_image_related_project .transparent_font").css({'opacity' : '0'});

        $(".thumbnail_image_related_project").hover(
            function(){
                $(this).children(".transparent_font").stop().animate({'opacity' : '0.7'}, 300); 
             },
            function(){
                $(this).children(".transparent_font").stop().animate({'opacity' : '0'}, 300); 
           }
        );
    });
4

0 回答 0