Home  >  Article  >  Web Front-end  >  HTML5 对各个标签的定义与规定:base

HTML5 对各个标签的定义与规定:base

WBOY
WBOYOriginal
2016-05-17 09:10:111652browse

base标签除了全局的属性之外,还有 href、target两个属性。
没有内容值。
 
interface HTMLBaseElement : HTMLElement {
           attribute DOMString href;
           attribute DOMString target;
};

base标签用于定义HTML文档中的相对url地址的基准URL,和接下来链接的浏览器打开方式。
每个HTML文档只能设置一个base标签。
base元素必须至少包含href或target属性中的一个,也可以包括两者。
base元素的href属性应该是一个有效的url地址
如果想为base元素的设置href值,请确保base元素写在每个包含网址属性的元素之前(html元素的manifest属性除外)。
当有多个包含href属性的base元素时,除了第一个都将被忽略。
如果想为base元素设置target属性值,请确保其有效,这个值将对所有链接和表单跳转方式产生影响,所以应该写在所有超级连接和表单之前。
例如

代码: 全选 运行


   


        This is an example for the <base> element
       
   
   
       

Visit the GO.


   

其中的链接,将跳转到http://www.htmlv.cn/bbs/topic1.html来播放视频。
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn