我注意到Google Closure Compiler似乎可以互换使用两者。
1.
(function a() {
window.requestAnimationFrame(function() {
//
a();
});
})();
2.
(function a() {
window.requestAnimationFrame(function() {
//
a();
});
}());
我注意到Google Closure Compiler似乎可以互换使用两者。
1.
(function a() {
window.requestAnimationFrame(function() {
//
a();
});
})();
2.
(function a() {
window.requestAnimationFrame(function() {
//
a();
});
}());