新窗口中的 HTML 链接

如何在新窗口或新标签页中打开链接。

在新窗口或标签页中打开链接

为了在新窗口/标签中打开链接, 在 <a> 标签内添加target="_blank" :

<a href="../html-link.htm" target="_blank">Open page in new window</a>

该代码将创建此链接:

在新窗口中打开页面

新窗口或新标签

您无法设置链接是否在新窗口或新标签页中打开。这取决于浏览器的设置。 

在指定大小的新窗口中打开链接

要在新窗口中打开链接,请在 <a> 标记内添加 Javascript 命令 onclick="window.open('text-link.htm', 'name','width=600,height=400') :

<a href="../html-link.htm" target="popup" onclick="window.open('../html-link.htm','name','width=600,height=400')">Open page in new window</a>

该代码将创建此链接:

在新窗口中打开页面

 


也可以看看

Advertising

链接
°• CmtoInchesConvert.com •°