84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
不知道为啥一直报这个错误。。。。已经在开头写了‘use strict’;求大神解答图片描述
ringa_lee
我终于发现了错误,就是'use strict';中间只能用一个空格,不能用两个,用两个就是会报错。
js 文件第一行添加:
use strict;
缺少严格模式声明, 是用的JSlint之类的语法检测么..
应该是你使用了高版本的angular.js(或者node.js)之类的,当然这个只是猜测。
语法内部强制要求了use strict,严格模式。
你在你书写的代码文件开头添加
"use strict";
应该就可以解决这个错误。
use strict。 表示在js中采用严格模式去执行代码,也就是采用ES5的规范 在匿名自执行函数前加上这个 就好了
use strict
我终于发现了错误,就是'use strict';中间只能用一个空格,不能用两个,用两个就是会报错。
js 文件第一行添加:
缺少严格模式声明, 是用的JSlint之类的语法检测么..
应该是你使用了高版本的angular.js(或者node.js)之类的,当然这个只是猜测。
语法内部强制要求了use strict,严格模式。
你在你书写的代码文件开头添加
应该就可以解决这个错误。
use strict
。 表示在js中采用严格模式去执行代码,也就是采用ES5的规范 在匿名自执行函数前加上这个 就好了