Redirect to 2 pages

后端 未结 3 1068
臣服心动
臣服心动 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:48

    Well, maybe you would like to open 2 page at the same time. You can control it by javascript.

    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";
    

提交回复
热议问题