別のコードスニペットが実行されている場合は、コードを実行します。このコードが実行されている場合はコードを実行
実行 THENこのコードは
(function() {
// Code runs here
})();
を実行します IFこのコードも
//This code
例
if (condition) {
block of code to be executed if the condition is true
}
http://www.w3schools.com/js/js_if_else.asp https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Statements/if...else
これは機能しないようですか?
if ((function() {// Code runs here})();)
{
//This code
}