suchen

Heim  >  Fragen und Antworten  >  Hauptteil

javascript – Auf die benannte Funktion kann außerhalb der Funktion nicht zugegriffen werden

var func2 = function func1() {
        console.log(1010)
        // console.log('func1', func1)
    }

    function func3 () {
        console.log(1010)
    }

    func3() // 1010
    func2() // 1010
    func1() // func1 is not defined
Auf

func1 kann nicht zugegriffen werden, bitte geben Sie mir eine Erklärung

过去多啦不再A梦过去多啦不再A梦2715 Tage vor635

Antworte allen(1)Ich werde antworten

  • 学习ing

    学习ing2017-06-12 09:32:01

    你所创建的函数是通过函数表达式创建的,并不是通过函数声明语句创建的,函数名只能在该函数表达式中使用. 注意函数声明语句函数表达式定义函数的方式是不同的.

    参考 Javascript权威指南 8.1 函数定义这一小节:

    Antwort
    0
  • StornierenAntwort