一、Try{}catch(e){}
try{
$.each($("div"),function(i,item){
if(...){
throw("异常信息");
}
})
}catch(e){
alert(e);
}
try{
$.each($("div"),function(i,item){
if(...){
throw("异常信息");
}
})
}catch(e){
alert(e);
}
相关文章: