首页 > 编程语言 > 详细

javascript 调试技巧

时间:2014-12-31 23:56:39      阅读:530      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!