Can you have multiple $(document).ready(function(){ … }); sections?

前端 未结 11 1359
庸人自扰
庸人自扰 2020-11-22 13:21

If I have a lot of functions on startup do they all have to be under one single:

$(document).ready(function() {

or can I have multiple such

11条回答
  •  青春惊慌失措
    2020-11-22 13:37

    Yes it is possible to have multiple $(document).ready() calls. However, I don't think you can know in which way they will be executed. (source)

提交回复
热议问题