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.
我们是否有任何其他选项可以在另一个窗口中打开 url,如 jquery 对话框 ui 或其他具有相同功能的东西,如 PHP 的标题
header('Location: http://www.example.com/');
您可以使用javascript打开方法window.open(URL)
window.open(URL)
例如window.open('http://stackoverflow.com','','width=400,height=600')
window.open('http://stackoverflow.com','','width=400,height=600')
有点难以理解你在问什么,但这能满足你的需要吗?
<a href="http://www.stackoverflow.com/" target="_blank">Open SO in a new window.</a>