jquery not proceeding to next page

后端 未结 5 1016
醉话见心
醉话见心 2020-12-12 05:29

i have jquery, but it is not going to next page, it always display images and waits, never proceed to next page.

HTML code:

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-12 06:03

    Others have mentioned the problem with your selector.

    However, this code also appears naked between two script tags. This means that they will be executed as soon as they are parsed. This means that they could be executed before the whole DOM is loaded, rendering them ineffective.

    You need to use something like this:

    
    

提交回复
热议问题