base元素可以用于设置页面嵌入的css文件或js文件链接的基地址。
例子:
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title></title>
<base href="http://www.baidu.com/"/>
</head>
<body>
<form id="form1">
<img src="img/baidu_sylogo1.gif" />
</form>
</body>
</html>
如上面的例子所示,设置了页面base 元素的href属性。那个img 的src完整URL路径 就是 http://www.baidu.com/img/baidu_sylogo1.gif。<head>
<title></title>
<base href="http://www.baidu.com/"/>
</head>
<body>
<form id="form1">
<img src="img/baidu_sylogo1.gif" />
</form>
</body>
</html>