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

前端 未结 11 1226
庸人自扰
庸人自扰 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:49

    Yes you can easily have multiple blocks. Just be careful with dependencies between them as the evaluation order might not be what you expect.

提交回复
热议问题