JavaScript 教程 之基础教程
Posted DemanMath
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript 教程 之基础教程相关的知识,希望对你有一定的参考价值。
1.js 错误
var objClass = { foo:1, bar:2 }; function printf() { var aaa:objClass; aaa.foo = 2; console.log(objClass.bar); } function throwIt() { throw new Error(""); } function catchIt() { console.log(catchIt.name); try { throwIt(); }catch (e) { console.log(e.stack); } }
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>DataType</title> <script type="text/javascript" src="scripts/dataType.js"></script> </head> <body> <p onclick="catchIt();return false;">Test</p> </body> </html>
明明定义了方法,却报错误,多次尝试后,分析为js里面有错误,导致编译其实是不过的,所以加载js是有问题的。
catchIt Error at throwIt (http://localhost:63343/H51/scripts/dataType.js:7:11) at catchIt (http://localhost:63343/H51/scripts/dataType.js:13:9) at HTMLParagraphElement.onclick (http://localhost:63343/H51/DataType.html:9:38)
这个就是callstack。
以上是关于JavaScript 教程 之基础教程的主要内容,如果未能解决你的问题,请参考以下文章
bootstrap之编译CSS和Javascript-0基础安装grunt教程