HTML 5 <base> 标签
定义和用法
<base> 标签规定页面中所有链接的基准 url。
HTML 4.01 与 HTML 5 之间的差异
None
例子:
假设图像的绝对地址是:
<img src="http://www.jbxue.com/i/pic.gif" />
现在我们在页面中的 head 部分插入 <base> 标签,规定页面中所有链接的基准 url:
<head> <base href="http://www.jbxue.com/i/" /> </head>
在上例中的页面上插入图像时,我们必须规定相对的地址,浏览器会寻找文件所使用的完整 URL:
<img src="pic.gif" />
属性
属性 | 描述 | 5 | 4 |
---|---|---|---|
href | 规定作为基准 URL 在页面中使用的 URL。 | 4 | 5 |
target | 在何处打开页面上的链接。该属性会被每个链接中的 target 属性覆盖。 | 4 | 5 |
标准属性
class, contenteditable, contextmenu, dir, draggable, id, irrelevant, lang, ref, registrationmark, tabindex, template, title
如需完整的描述,请访 HTML 5 中标准属性。
事件属性
onabort, onbeforeunload, onblur, onchange, onclick, oncontextmenu, ondblclick, ondrag, ondragend, ondragenter, ondragleave, ondragover, ondragstart, ondrop, onerror, onfocus, onkeydown, onkeypress, onkeyup, onload, onmessage, onmousedown, onmousemove, onmouseover, onmouseout, onmouseup, onmousewheel, onresize, onscroll, onselect, onsubmit, onunload
如需完整的描述,请访 HTML 5 中事件属性。