base标签需要放在head标签中
<!document html> <html lang="zh-CN"> <head> <title>base标签</title> <meta charset="utf-8"> <base href="http://localhost:8090/test/img/" target="_blank"/> </head> <body> <img src="1.jpg" width="200" height="125"/> <p/> <a href="http://www.baidu.com">百度一下</a> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <link rel="icon" href="https://cli.vuejs.org/favicon.png"> <title>Document</title> <base href="http://www.baidu.com" target="_blank"> </head> <body> <a href="/img/pcpad_20b426f0af2c7ce8fb79ee4200a0e13e.png">百度logo</a> <a href="https://www.taobao.com">淘宝</a> </body> </html>