还有象document.all,window.drawit,window.pllit,clearInterval()函数,setInterval()函数,都是怎么回事啊???

解决方案 »

  1.   

    layer是Netscape4.X中的标记,在其他浏览器中没有,可以用
    if (document.layers)判断浏览器是否是netscape4.X版本的。
    setTimeout("window.onresize=regenerate",400) 
    是每400毫秒执行一次window.onresize=regenerate这个语句
      

  2.   

    NS 
    document.layersIE
    document.all
      

  3.   

    if (document.layers) 这个是判断是否ns浏览器,setTimeout("window.onresize=regenerate",400)
    400毫秒后执行window.onresize=regenerate语句
      

  4.   


    http://expert.csdn.net/Expert/TopicView1.asp?id=942792
    下载javascript手册,里面很清楚
      

  5.   

    window.drawit和window.pllit是什么呢?
      

  6.   

    drawit和pllit是自定义的函数或者属性
      

  7.   

    clearInterval()函数,setInterval()函数也是自定义的吗???
      

  8.   

    clearInterval()     清除计时器
    setInterval()       设置计时器