码迷,mamicode.com
首页 > 编程语言 > 详细

javascript 调试技巧

时间:2014-12-31 23:59:43      阅读:329      评论:0      收藏:0      [点我收藏+]

标签:

  • 不用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>

javascript 调试技巧

标签:

原文地址:http://www.cnblogs.com/qq-757617012/p/4196726.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!