2015-04-06 77 views
0

加載頁面時收到以下錯誤在開發者控制檯:toastr沒有定義

未捕獲的ReferenceError:toastr沒有定義

這裏是HTML內容。有人可以向我解釋爲什麼toastr不確定嗎?

<!DOCTYPE html> 
 
<html xmlns="http://www.w3.org/1999/xhtml"> 
 

 
<head> 
 
    <link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/css/toastr.min.css"> 
 
</head> 
 

 
<body> 
 
    <p>Toastr TEST</p> 
 
    <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"> 
 
    </script> 
 
    <script scr="http://cdnjs.cloudflare.com/ajax/libs/toastr.js/2.0.2/js/toastr.min.js"> 
 
    </script> 
 
    <script> 
 
    $(document).ready(function() { 
 
     console.log("document.ready"); 
 
     toastr.info('document.ready'); 
 
    }); 
 

 
    $(window).load(function() { 
 
     console.log("window.load"); 
 
     toastr.info('window.load'); 
 
    }); 
 
    </script> 
 
</body> 
 

 
</html>

+1

爲什麼不在''中包含'