|
復(fù)制代碼 代碼如下:
<html>
<head>
<title>Javascript</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>
復(fù)制代碼 代碼如下:
<html>
<head>
<title>Javascript</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>
利用firefox的firebug來調(diào)bug
引用
復(fù)制代碼 代碼如下:
<html>
<head>
<title>Javascript</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中可以添加一個方法
引用
復(fù)制代碼 代碼如下:
function Console(){
this.log=function(inText){
alert(inText);
}
}
var console=new Console();
JavaScript技術(shù):Javascript 學(xué)習(xí)筆記 錯誤處理,轉(zhuǎn)載需保留來源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請第一時間聯(lián)系我們修改或刪除,多謝。