首页 > 网站 > WEB开发 > 正文

javascript 调试技巧

2024-04-27 14:14:30
字体:
来源:转载
供稿:网友

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>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表