how to call a function in PHP after 10 seconds of the page load (Not using HTML)

后端 未结 12 928
终归单人心
终归单人心 2020-12-11 02:44

Is there any way to call a function 10 seconds after the page load in PHP. (Not using HTML.)

12条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-11 03:23

    PHP is a server side scripting language. If you need to check if something has loaded already in the client side, you will need a client-side scripting language like JavaScript.

    You might need to use jQuery for your purpose to simplify things.

    jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript.

    First, download jQuery. In the head tag of your HTML, add this:

              
     
    

    In the body of your HTML, add this:

提交回复
热议问题