2012年5月7日星期一

javascript break

javascript break

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html ="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>无标题文档</title><script type="text/javascript">function TestBreak(){    var br=new Array(); for(var i=0;i<10;i++){    alert(i);    br.push(i);    if(i==3){break;}    }    alert(br.join(",")); //0,1,2,3}TestBreak();</script></head><body></body></html>

TAG: