Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 在新窗口中重定向
请不要介意这是一个愚蠢的问题,
是否可以在 php 中使用在新选项卡中打开一个窗口
header(Location: 'blahblah');
不,这是不可能的。标头只会在当前窗口/选项卡中重定向当前页面。
不,不可能使用 php,因为 php 是一种服务器端语言,而您想要的是客户端功能。所以你必须用一些javascript来做。
你绝对可以通过javascript尝试这样的事情
<script type="text/javascript" language="Javascript">window.open('http://www.example.com');</script>