欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Javascript miscellanea -display data real time, using window.status

程序员文章站 2022-07-11 19:13:49
 //
<script type="text/javascript">
 //<![cdata[
 function fstatus() {
 for (var i=0; i<100000; i++) {
 window.status = "now process is \"" +i+ "\"";
 }
 }
 function finnerhtml() {
 for (var i=0; i<1000; i++) {
 document.getelementbyid("demo").innerhtml = "now process is \"" +i+ "\"";
 }
 }
 //]]>
 </script>
<input type="button" onclick="fstatus()" value="test status"/>
<input type="button" onclick="finnerhtml()" value="test innerhtml"/>
<div id="demo"></div>
in the above example,one have a loop and display it real time use innerhtml property, another is use window.status.

however, the window.status in real time that perfect display the loop digit, but the innerhtml property is not.
just display result digit: now process is "999".

and how to using innerhtml display real time data? can but use window.settimeout, or window.setinterval method, like this:

 var cnt=0;
 function finnerhtml() {
 if (cnt++>=1000) return;
 document.getelementbyid("demo").innertext = "now process is \"" +cnt+ "\"";
 window.settimeout(finnerhtml,10)
 }

but, it's no convenient. the display speed is not well, and we must control something.
e.g.
settimeout variables, when it completely.

so, i propose winodw.status to replace innerhtml property when display in real time.