我有這個代碼在頁面加載時自動提交表單,但需要20秒才能完成頁面完成加載後提交。是否有可能使body onload事件更快?
我在這裏做錯了什麼? 如果沒有,如何繞過那20秒的延遲? 我們可以使body onload事件更快嗎?
代碼:
<html>
<body onload="document.forms['loginform'].submit();">
<form id="loginform" name="loginform" action="https://login.url.com" method="post" style="visibility:hidden">
<input type="hidden" value="" name="hhh">
<input type="text" value="username" id="login_field" name="username">
<input type="password" value="pass" id="password_field" name="password">
<input type="hidden" value="" id="password_strength" name="password_strength">
<input type="hidden" value="/index.php" id="sendto" name="sendto">
<button id="btn_logon" type="submit"><span>Login</span></button>
</form>
</body>
</html>
太感謝你了。
當然,提交後20秒延遲*是由於服務器上的處理緩慢。 – brianpeiris 2011-04-25 03:59:37