html - navigate different page without reload -
i noob web development , have question on link of website. found on website on clicking links in navigation page not reload , content changes.
a example website itself. when open website i.e. stackoverflow.com , click on other link on navigation link url changes stackoverflow.com/questions if clicked on questions link. in webpage shows index.html @ first , on clicking on link in navigation shows url aboutus.html.
is related dynamic webpage? please help? stackoverflow.com shows no extension .html. please me understand this. thank , obliged answer.
that because of url routing, routing can done server side on client side.you can learn spa(single page application).visit here.
basically, in case of server side page rendering.the server matches target url set of url rules specified developer , sends particular file.
when routing done on client side,the routing rules defined on clientside javascript.you can read 'routing using angularjs' or 'routing using reactjs'.almost javascipt framework support url routing these day.
hope, clears doubt.
thank you
Comments
Post a Comment