Loading another html page from javascript

后端 未结 4 1955
南旧
南旧 2021-02-07 00:51

Is it possible to load a Javascript program from an html page and then make the Javascript load another html page instead of the page the loaded the program?

4条回答
  •  眼角桃花
    2021-02-07 01:31

    You can include a .js file which has the script to set the

    window.location.href = url;
    

    Where url would be the url you wish to load.

提交回复
热议问题