0
我知道這是一個基本問題,但我想問一下,如果所有代碼都包含在$(function(){}中,那麼哪個更好放置「use strict」這種說法是在文件的頂部Jquery在代碼中使用嚴格的位置
兩種:
$(function(){
"use strict";
// jQuery methods go here...
});
或
"use strict";
$(function(){
// jQuery methods go here...
});
我想第二個是更througher爲(如果在文件的最頂端)將涵蓋所有內容方面少放在哪裏。
這是正確的嗎?
THX 亞當
這個類似的問題有一些很好的答案〜http://stackoverflow.com/questions/4462478/jslint-is-suddenly-reporting-use-the-function-form-of-use-strict – Phil 2014-09-25 03:41:55