Is it possible to load content of page without Refreshing the whole page

后端 未结 3 558
执笔经年
执笔经年 2021-01-25 12:08

Actually i want to refresh my content of a page without Refreshing the whole page through JavaScript or j Query ....... and i did my whole project into ( Php or javaScript) so i

3条回答
  •  不知归路
    2021-01-25 12:23

    You can load the data from the server and and place the returned HTML into the matched element.

    $("#content").load( "ajax/test.html" );

提交回复
热议问题