其他分享
首页 > 其他分享> > 知识点补充:超链接

知识点补充:超链接

作者:互联网

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>知识点补充</title>
    </head>
    <body>
        <p>
            <a href="https://home.firefoxchina.cn/">打开火狐(当前页面跳转)</a>

                <!-- 当前页面跳转-->
        </p>
        <p>
            <a href="https://home.firefoxchina.cn/" target="_blank">打开火狐(新页面跳转)</a>

                <!-- 新页面跳转-->
        </p>
    </body>
</html>

标签:知识点,补充,新页面,火狐,超链接,跳转,打开
来源: https://blog.csdn.net/qq_54169998/article/details/120689450