readyState Property--------------------------------------------------------------------------------Retrieves the current state of the object. SyntaxHTML N/A 
Scripting [ vState = ] object.readyState Possible ValuesvState Variant that receives one of the following values:uninitialized Object is not initialized with data. 
loading Object is loading its data. 
loaded Object has finished loading its data. 
interactive User can interact with the object even though it is not fully loaded. 
complete Object is completely initialized. 
 The property is read-only. The property has no default value.

解决方案 »

  1.   

    我觉得你应该在Java Applet自身里进行处理
      

  2.   

    在java applet里做?用javascript行吗?原来我有试过用ActiveX,用javascript可以判断是否下载完!但是在java applet去行不通,有人会吗?
      

  3.   

    可在applet的init()中调用一个javascript的函数,报告applet已下载完毕,因为init()是在applet下载完后才执行的。
      

  4.   

    用applet的getAppletContext()函数,可以得到页面的句柄。就可以进行许多
    操作了!如在状态栏里显示进程。也可以在页面里定义一个
    <input type = text name=progress>从applet里改变progress的值
      

  5.   

    我是想做一個當applet正在下載時出一個提示load....,下載完以後就顯示applet,這怎麽做比較好?