Redirect to 2 pages

后端 未结 3 1070
臣服心动
臣服心动 2021-01-29 16:05

I have a PHP page and I want to redirect it first to a page (eg google.com) then to another page (eg bing.com).

To do this I\'m using the following:

head         


        
3条回答
  •  说谎
    说谎 (楼主)
    2021-01-29 16:49

    Something like following code:

    var open_link_google = window.open('','_parent');
    open_link_google.location="http://www.google.com";
    
    var open_link_yahoo = window.open('','_blank');
    open_link_yahoo.location="http://www.yahoo.com";
    

提交回复
热议问题