Javascript-форум (https://javascript.ru/forum/)
-   Internet Explorer (https://javascript.ru/forum/css-html-internet-explorer/)
-   -   Не срабатывает onLoad в IE8 (https://javascript.ru/forum/css-html-internet-explorer/5049-ne-srabatyvaet-onload-v-ie8.html)

Ruark 11.09.2009 12:23

Не срабатывает onLoad в IE8
 
есть код:
<script>
  window.onload=function() 
  {
   var aform=$('authform2');
   Event.observe(aform, 'submit', ALogon);
  }
 </script>

<form method="post" action="/?action=auth" id="authform2" name="authform">
......
</form>
function ALogon()
 {
  $('subbutton').style.display='none';
  new Ajax.Request
  (
   "/include/ajax/login.php",
   {
    method: 'post',
    parameters: $('authform').serialize(true),
    onSuccess: function(xhr)
               {
                var result=xhr.responseXML;
                AuthSite(result);
               }

   }
  );
  $('subbutton').style.display='';
  return false;
 }
отлично работает в ИЕ6, ИЕ7, в ИЕ8 не работает.
Покопавшись, я определил, что затык не в onLoad. Проблема начинается со строчки new Ajax.Request
То есть получается что не срабатывает объект библиотеки prototype? И именно в ИЕ8. Кто подобное видел?


Часовой пояс GMT +3, время: 11:31.