今天给大家分享的是由图老师小编精心为您推荐的Javascript学习笔记:错误处理,喜欢的朋友可以分享一下,也算是给小编一份支持,大家都不容易啊!
【 tulaoshi.com - Web开发 】
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:nn"+error.message);
}
}
/script
/head
body
input type="button" value="Test" onclick="test(null);"
/body
/html
html
head
titlejavascript/title
script type="text/javascript"
function test(inVal){
try{
inVal=inVal.toUpperCase();
}catch(error){
alert("An exception has occurred.Error was:nn"+error.message);
}
}
/script
/head
body
input type="button" value="Test" onclick="test(null);"
/body
/html
利用firefox的firebug来调bug
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/webkaifa/)引用
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/webkaifa/)html
head
titlejavascript/title
script type="text/javascript"
function test(){
var a=0;
console.log("checkpoint 1");
a=a+1;
console.log("checkpoint 2");
a=a-1;
console.log("checkpoint 3");
a=a.toLowerCase();
console.log("checkpoint 4");
}
/script
/head
body
input type="button" value="Test" onclick="test(null);"
/body
/html
在IE中可以添加一个方法
引用
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/webkaifa/) function Console(){
this.log=function(inText){
alert(inText);
}
}
var console=new Console();
来源:http://www.tulaoshi.com/n/20160220/1632975.html
看过《Javascript学习笔记:错误处理》的人还看了以下文章 更多>>