今天在火狐浏览器新装了FireBug插件
按照FireBug教程抄了如下代码:
<html>
<head>
<title>console demo</title>
<script type="text/javascript">
function errorTest(){
notExistFunction(); //不存在的函数
}
</script>
</head>
<body>
<input type="button" value="test button"
onclick="errorTest();"/>
</body>
</html>
这个程序是有错误的,教程里的这个代码是为了演示FireBug调试js的错误。
可是在浏览器中无法查看js代码,FireBug的脚本页显示:
FireBug本来就是用来调试js错误,无法显示的话就没办法调试了。
有哪位前端大神知道了告诉我一下。
用chrome浏览器查看试试
chrome浏览器没有firebug吧
@徐浩进: firebug不是重点 重点是调试js
@ycyzharry: 好吧