1 Star 0 Fork 0

蓝莓铁匠/js-practice

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
8.2.3try catch.html 1.31 KB
一键复制 编辑 原始数据 按行查看 历史
蓝莓铁匠 提交于 2015-09-18 09:14 . new file add &repair
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link href="http://www.boc.cn/favicon.ico" rel="Shortcut Icon" type="image/x-icon">
</head>
<script language="JavaScript">
function alertTest(){
document.write("程序开始");
var a=10;
var b=20;
document.write("程序执行");
document.write(a+b);
document.write("查询结束");
}
</script>
<body>
<!--try catch finally 语句-->
<script language="JavaScript">
try{
document.forms.input.length;
}catch(exception){
alert("没有定义表单以及文本框");
}finally{
alert("结束 try...catch...finally 语句");
}
</script>
<script>
try{
document.forms.input.length;
}catch(exception){
alert("try区域有异常发生");
try{
document.forms.input.length;
}catch(exception2){
alert("catch区域有异常发生");
}
}finally{
alert("结束 try catch finally 语句");
}
</script>-->
<!--<script>
try{
var num=1/10;
if(num=="infinity"){
throw new Error("除数不能为0");
}
}catch(exception){
alert(exception.message);
}
</script>-->
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mithy/js-practice.git
git@gitee.com:mithy/js-practice.git
mithy
js-practice
js-practice
master

搜索帮助