Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
bootstrap.jsコードファイルの先頭にこれがあります
!function($) {
どういう意味ですか?
これをコーディングするfunction something() {something}と、これは関数の宣言ですが、関数は呼び出されません(something()後で実行する必要があります)。
function something() {something}
something()
したがって、実際に関数を呼び出すには、次のようなことを行う必要があります(function(){})();... " !function($) {}"は、関数全体を括弧で囲む代わりの方法です。感嘆符の構文は、それを書くためのショートカットです。「!」行をを返す式に変換しますtrue。
(function(){})();
!function($) {}
true