企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
​ ``` 实现从当前页面跳转到目标页面     <a href="目标页面的路径"> 文字</a> ​ 例如: <a href="1/3/02.html">跳转</a> <a href="https://www.baidu.com/">点击我跳转到百度首页</a> <a href="baidu.com"> <img src="1.jpg"> </a> ​ ​ 属性:   target: _self(默认在当前窗口中打开新页面) | _blank (在新窗口中打开新页面) ​    <a href="a.html" target="_blank"> 秒杀</a>   注意: 如果希望实现在新窗口中打开新页面,一种简单的方式: 1. 在 head标签中设置 base标签 例如: <head>                <meta charset="UTF-8">                <title>Document</title>                <base target="_blank">            </head> ​     title: 设置鼠标悬停到超链接上的文字提示。  <a href="09秒杀页面.html" target="_blank" title="秒杀"> 秒杀</a> ```