Loading another html page from javascript

后端 未结 4 1742
南旧
南旧 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条回答
  •  旧时难觅i
    2021-02-07 01:42

    Yes. In the javascript code:

    window.location.href = "http://new.website.com/that/you/want_to_go_to.html";
    

提交回复
热议问题