How to call a function inside $(document).ready

纵然是瞬间 提交于 2019-11-27 13:57:25
anmarti

You are not calling a function like that, you just define the function.

The correct approach is to define the function outside document.ready and call it inside:

// We define the function
function validate(){
  console.log('validated!');
}

$(document).ready(function(){
  // we call the function
  validate();
});

Another option is to self invoke the function like that:

$(document).ready(function(){
   // we define and invoke a function
   (function(){
     console.log('validated!');
   })();
});

Your validate function is local to the function you've passed to the jQuery ready handler.

if you do:

window.validate = function(){ /*....*/ };

you will be able to access from console. But it's not good practice to pollute the global scope unless it's just for debugging.

well, is there any reason you'd need that function inside document ready? only inside those brackets (scope) the function will exist. just move it out, or all it only inside document.ready

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!