DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> Javascript學習筆記:錯誤處理
Javascript學習筆記:錯誤處理
編輯:關於JavaScript     

網頁制作poluoluo文章簡介:Javascript學習筆記:錯誤處理.

Java代碼

<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> 

<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來調bug

引用

<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中可以添加一個方法

引用

        function Console(){
            this.log=function(inText){
                alert(inText);
            }
        }
       var console=new Console();

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved