当前位置: 首页 > 网络学院 > 客户端脚本教程 > HTML DOM > DOM Link 对象
The Link object represents an HTML link element. The link element can only be used within the <head> tag.
Link对象代表HTML中的link元素。link元素只能在<head>标签中使用
IE: Internet Explorer, F: Firefox, N: Netscape, W3C: World Wide Web Consortium (Internet Standard).
Property 属性 | Description 描述 | IE | F | N | W3C |
---|---|---|---|---|---|
charset | Sets or returns the character set of the linked resource 设置或返回被连资源的字符集。 | 4 | Yes | ||
disabled | Sets or returns whether or not the link object should be disabled 设置或返回link对象是否为禁用 | 4 | Yes | ||
href | Sets or returns the URL of the linked resource 设置或返回被连资源的URL | 4 | 1 | 2 | Yes |
hreflang | Sets or returns the language code of the linked resource 设置或返回被连资源的语言代码 | 4 | Yes | ||
id | Sets or returns the id of the link (In IE 4 this property is read-only) 设置或返回link的id(在IE4中这个属性为只读) | 4 | 1 | No | |
media | - | Yes | |||
name | Sets or returns the name of the link object 设置或返回link对象的name | 4 | No | ||
rel | Sets or returns the relationship between the current document and the target URL 设置或返回当前文档与目标URL之间的关联 | 4 | Yes | ||
rev | Sets or returns the relationship between the current document and the target URL 设置或返回当前文档与目标URL之间的关联 | 4 | Yes | ||
target | Sets or returns the window/frame where to open the target URL 设置或返回打开目标URL的方式 | 4 | 1 | 2 | Yes |
type | Sets or returns the MIME type of the linked resource 设置或返回被连资源的MIME类型 | 4 | Yes |
Syntax: object.event_name="someJavaScriptCode"
语法:对象.事件名称=“一些JS代码”
Event 事件 | Description 描述 | IE | F | N | W3C |
---|---|---|---|---|---|
onLoad | Executes some code after the browser loads the link object 在浏览器加载link对象后执行一些代码 | 4 | 1 | 2 |