Javascript onerror事件及try....catch

<script type="text/javascript">
/*onerror事件*/
window.onerror=function(){
	alert("出错了!");	
}
</script>
</head>
<!--错误在于无法找到nonexistent()事件-->
<body onload="nonexistent()">
</body>
</html>



<script type="text/javascript">
/*try...catch的使用*/
try{
	alert("this is an example");
	alert(fresheggs);//调用一个不存在的变量
}catch(exception){
		var sError="";
		for(var i in exception){
			sError+=i+":"+exception[i]+"\n";
		}
		alert(sError);
}
</script>
</head>
<body>
</body>
</html>

 

你可能感兴趣的:(JavaScript,html)