Open new window using a tag

Open new window using a tag

The a tag opens a new window.
Just add target="_blank" after the a tag.

<a href="index.html" target="_blank">跳转到新窗口打开</a>

Extension: Add target="_self" after the a tag to open this window by default (this attribute is the default)

<a href="index.html" target="_self">此窗口打开</a>

Guess you like

Origin blog.csdn.net/Quentin0823/article/details/132625821