首页 > 代码库 > 定时器使用过程 写代码 发生的错误

定时器使用过程 写代码 发生的错误

1.0 代码:     obtn1.onclick=setInterval(show,1000)

 

 

obtn1.onclick=function()

{

    setInterval(show,1000)

}

 

 

2.0清空时间 设置返回值!   

odiv2.onmouseout=function()
{
 setTimeout(function(){odiv2.style.display=‘none‘;},1000);

}

3.0

   标签img 和a 的先后顺序。

  <a href="http://www.mamicode.com/#" ><img src="http://www.mamicode.com/shuzi/sj_02.jpg" /> </a>

 

 

4.0  一个有单位  一个无单位

  oul.style.width==-oul.style.left 

  alert(-oul.style.left)                         是NaN    

 

 

 

5,0   为什么字符串     比较是和‘0‘比  不是直接和0 比

     if(str.charAt(i)>=‘0‘&&str.charAt(i)<=‘9‘)

 

 

       

 

定时器使用过程 写代码 发生的错误