|
有很多新手都在疑惑在视图里的<head></head>之间都经常加上<base href="<?=base_url()?>"/>这样一句话究竟有什么作用啊?
我也不讲什么抽象的定义啊,这里以一个实际的例子,我把代码一些出来,大家就明白了。
如有以下代码:
<html>
<head>
<base href=http://www.baidu.comtarget="_blank">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>base href用法</title>
</head>
<body>
<a href="1.php">1.php</a>
<a href="2.php">2.php</a>
</body>
</html>
当点了链接后,跳出的网页地址是http://www.baidu.com/1.php或http://www.baidu.com/2.php,它就是在这些相对路径的文件前加上基链接指向的地址。如果目标文件中的链接没有指定target属性,就用base标记中的target属性。
|
|