1

我在这里有一个自动刷新脚本,它工作得很好,但是通过 body onload 调用 LoadPage 会阻止我页面上的其他几个脚本。我已经尝试通过许多其他建议的替代体加载来调用它,但到目前为止没有任何效果。这是代码:

<head>
<script>  
      var asdf = false;  
      function StartTime(){  
        if(asdf)clearTimeout(asdf)  
        asdf = setTimeout("RefreshPage()",15000);  
      }  
      function RefreshPage(){  
clearTimeout(asdf)  
        if(document.autorl.RFCB.checked)  
          document.location.href = document.location.pathname + '?Checked'


      }  
      function LoadPage(){  
        var findCheck = document.location.href.split("?Chec");  
        if(findCheck.length == 2){  
          document.autorl.RFCB.checked=true;  
    window.location='#bottom'     
          StartTime()       
        }
      }  
    </script>
</head>

<body onload="LoadPage()">

<div>
<form name="autorl">
Auto-Refresh: <input type="checkbox" name="RFCB" onclick="StartTime()">
</form></div>

<a name="bottom">

这里有人可以帮忙吗?

4

2 回答 2

1

您可以改为使用 jQuery 中的 document.ready() 处理程序来完成此操作:

$(document).ready(function() {
    LoadPage();
});

http://api.jquery.com/ready/

于 2012-11-16T03:21:58.127 回答
0

</html>您可以尝试在标签添加之前从 html 文件末尾调用该函数<script>LoadPage();</script>

于 2012-11-16T03:22:19.150 回答