Javascript Uncaught Reference error Function is not defined

前端 未结 3 1621
一整个雨季
一整个雨季 2020-12-02 23:15

Check the Fiddle to see the failure occurring.

When I add Data (Even if I leave it empty) to the text box and try to click \"Add\" it doesn\'t do anything.

O

3条回答
  •  [愿得一人]
    2020-12-02 23:46

    In JSFiddle, when you set the wrapping to "onLoad" or "onDomready", the functions you define are only defined inside that block, and cannot be accessed by outside event handlers.

    Easiest fix is to change:

    function something(...)
    

    To:

    window.something = function(...)
    

提交回复
热议问题