页面打开直接执行a点击事件

<script>
    window.onload = function(){
        function autoclick(){
            var url = document.getElementById('btn').href;//获取要点击的a标签
            window.location.href= url;
        }
       
        setTimeout(autoclick, 1000)
    }
</script>

 

posted @ 2016-06-16 18:52  djdliu  阅读(2572)  评论(0编辑  收藏  举报