admin管理员组

文章数量:1345069

I have seen this question being asked many times here, but I couldn't get an answer that works!

i am trying to redirect to a load.php TO A NEW TAB using the following script:

echo '<script>window.open("load.php","_blank)</script>';

for some reason it is not working and it stays on the same page.

i am using chrome!

is there any possible way to redirect to a new tab? thanks a lot

I have seen this question being asked many times here, but I couldn't get an answer that works!

i am trying to redirect to a load.php TO A NEW TAB using the following script:

echo '<script>window.open("load.php","_blank)</script>';

for some reason it is not working and it stays on the same page.

i am using chrome!

is there any possible way to redirect to a new tab? thanks a lot

Share Improve this question asked Jul 3, 2017 at 23:07 Ashraf D. MilhimAshraf D. Milhim 801 gold badge1 silver badge7 bronze badges 2
  • 1 most browsers stop this by defult – user8011997 Commented Jul 3, 2017 at 23:08
  • 1 like @rtfm said, this auto-opening is prevented by the browsers, because you could render the same script in the load.php, which would result in an infinite loop of opening new tabs.. The browser will only allow it programmatically on some user event, like a click – webdeb Commented Jul 3, 2017 at 23:18
Add a ment  | 

2 Answers 2

Reset to default 5

Most browsers will block window.open unless it is a result of a direct user interaction i.e. the onclick event handle of an anchor tag being fired.

There are ways you can try and "trick" popup blockers, but it is unreliable and considered bad practice. If a user has chosen to enable a popup blocker, it should be respected.

What I would suggest is to also add a link on your page along the lines of the following:

<a href="load.php" target="_blank">Click here</a> if the window does not open in a seperate window.

This would ensure that the user can still open the window manually should it be supressed by a popup blocker.

You're missing a quote mark after _blank.

Try this:

echo '<script>window.open("load.php","_blank")</script>';

本文标签: javascriptRedirecting to a new tab in PHPStack Overflow