Jump to content
  • 0

Работает в Explorer, но не в Firefox


southendlabs
 Share

Question

привет :)

вот часть кода процессора страниц, который показывает процесс загрузки какой-либо страницы:

		var iLoopCounter = 1;
var iMaxLoop = 6;
var iIntervalId;

function BeginPageLoad()
{
/* Перенаправить браузер на другую страницу, сохраняя фокус */
location.href = "<%=PageToLoad %>";
/* Обновлять индкатор хода процесса каждые 1/2 секунды */
iIntervalId = window.setInterval("iLoopCounter = UpdateProgressMeter(iLoopCounter,iMaxLoop)", 500);
}

function UpdateProgressMeter(iCurrentLoopCounter, iMaximumLoops)
{
iCurrentLoopCounter += 1;
if (iCurrentLoopCounter <= iMaximumLoops)
{
ProgressMeter.innerText += ".";
return iCurrentLoopCounter;
}
else
{
ProgressMeter.innerText = "";
return 1;
}
}

<body onload="java script:BeginPageLoad();" onunload="java script:EndPageLoad();">
<form id="frmPageLoader" method="post" runat="server">
<div id="center">
<span id="MessageText">Идет загрузка страницы - Подождите</span> <span id="ProgressMeter">
</span>
</div>
</form>
</body>

В Internet Explorer все работает прекрасно, а в Mozilla Firefox не появляются точечки с заданным интервалом времени, которые должны анимировать процесс загрузки страницы.

Подскажите, в чем тут дело!!!

Спасибо :(

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy