html中base标签的作用(代码讲解)
程序员文章站
2022-07-09 13:18:22
base标签的作用就是,当页面中的a超链接标签没有设置href属性的值和没有设置target属性的值时,默认使用base标签中的href属性的值和target属性的值!
直接上代...
base标签的作用就是,当页面中的a超链接标签没有设置href属性的值和没有设置target属性的值时,默认使用base标签中的href属性的值和target属性的值!
直接上代码!
<!doctype html> <html> <head> <meta charset="utf-8"> <title>base标签</title> <link rel="stylesheet" type="text/css" href="css/body.css" media="all"> <link rel="stylesheet" type="text/css" href="css/mark.css"> <base href="https://blog.csdn.net/czh500/article/details/53451373"> <base target="_blank"> </head> <body> <p align="center"> <h2>base标签</h2> base标签的作用就是,当页面中的a超链接标签没有设置href属性的值和没有设置target属性的值时,默认使用base标签中的href属 性的值和target属性的值<br><br> <a href="">测试1</a><br><br> <a href="">测试2</a><br><br> <a href="">测试3</a><br><br> <a href="">测试4</a><br><br> <a href="https://www.baidu.com" target="_self">测试5</a><br><br> <a href="https://blog.csdn.net/czh500">测试6</a><br><br> </p> </body> </html>
上一篇: VirtualBox简体中文版下载安装(图解教程)
下一篇: VMware虚拟机优化十招技巧