核心提示:base标签的作用就是,当页面中的A超链接标签没有设置href属性的值和没有设置target属性的值时,默认使用base标签中的href属性的值和target属性的值!直接上代码!!DOCTYPE h...
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>