我测试了以下代码:
$(function () {
"use strict"
(function () {
console.log("something");
}());
});
但是在 IE 中运行时,我不断收到异常:“预期功能”。在 Firefox 中,这可以正常工作。这似乎是基本的功能。我究竟做错了什么?
我测试了以下代码:
$(function () {
"use strict"
(function () {
console.log("something");
}());
});
但是在 IE 中运行时,我不断收到异常:“预期功能”。在 Firefox 中,这可以正常工作。这似乎是基本的功能。我究竟做错了什么?