如何调试此 JavaScript 错误?
我正在开发一个临时网站,但主页滑块不起作用。我是调试 JavaScript 的新手,如何使用 Firebug 或使用控制台进行故障处理,为什么滑块不起作用?
我什么都试过了,却一无所获。希望专业人士能够进来帮助我解决这个问题,这反过来又会教会我将来的调试。
谢谢大家!
I am working on a staging site, and the homepage slider isn't work. I'm new to debugging JavaScript, how do I break down, with Firebug, or using the console, why the slider isn't working?
I've tried just about everything, and I've come up empty. Hoping a pro can come in and help me through it, and that in turn will teach me for future debugs.
Thanks guys and gals!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 console.log 函数,例如 console.log("some debug info");输出变量状态等信息并查看代码执行的程度。您可以使用 Google Chrome 开发者工具查看此输出,即单击右上角的工具图标,然后单击“工具”>“开发人员工具或 Cntrl + Shift + I。
这也适用于 Firefox 的 WebConsole (Cntrl + Shift + K)。
You can use the console.log function e.g console.log("some debug info"); to output informaiton such as variable states and see how far the code is executing. You can view this output using Google Chrome Developer Tools i.e. click the tool icon at the top right and then Tools > Developer Tools or Cntrl + Shift + I.
This also works for Firefox's WebConsole (Cntrl + Shift + K).