DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> 分享一則javascript 調試技巧
分享一則javascript 調試技巧
編輯:關於JavaScript     

不用alert,用console.log()

復制代碼 代碼如下:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function showLog(message){
    console.log(message);
}
function test(name){
    showLog(name);
}
test("hello");
</script>
</head>        
<body>
</body>
</html>

以上算是一個個人心得,這裡分享給大家,小伙伴們試試看。

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