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
2 Answers
Reset to default 5Most 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
版权声明:本文标题:javascript - Redirecting to a new tab in PHP - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743795853a2540415.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论