目录

HTML DOM base 对象


基础对象

Base 对象表示 HTML <base> 元素。

访问基础对象

您可以使用 getElementById() 访问 <base> 元素:

示例

var x = document.getElementById("myBase");
亲自试一试 »

创建基础对象

您可以使用 document.createElement() 方法创建 <base> 元素:

示例

var x = document.createElement("BASE");
亲自试一试 »

基础对象属性

Property Description
href Sets or returns the value of the href attribute in a base element
target Sets or returns the value of the target attribute in a base element

标准属性和事件

Base对象也支持标准特性事件


相关页面

HTML 参考:HTML <base> 标签