首页 相关文章 Javascript学习笔记:错误处理

Javascript学习笔记:错误处理

Java代码

html
head
titlejavascript/title
script type="text/javascript"
function test(inVal){
try{
inVal=inVal.toUpperCase();
}catch(error){
alert("An exception has occurred.Error was:\n\n"+error.message);
}
}
/script
/head
body
input type="button" value="Test" onclick="test(null);"
/body
/html [ 查看全文 ]

2016-02-20 标签:

Javascript学习笔记:错误处理的相关文章

手机页面
收藏网站 回到头部