HTML DOM media 属性
2017-08-06 HTML DOM media 属性 HTML DOM Link 对象 定义和用法 media 属性设置或返回显示文档的设备。 对于样式信息而言,目标媒介非常重要。移动设备和桌面计算机的样式可能是不同的。 语法 linkObj
HTML DOM id 属性
2017-08-06 HTML DOM id 属性 HTML DOM Link 对象 定义和用法 The id property sets or returns the id of a link element. 语法 linkObject.id=id 实例 The following example outputs the id of a link element: htmlheadlink rel=stylesheet type=text/c
HTML DOM hreflang 属性
2017-08-06 HTML DOM hreflang 属性 HTML DOM Link 对象 定义和用法 The hreflang property sets or returns the base language of the target URL. 语法 linkObject.hreflang=languagecode 实例 The following example returns the language code of the l
HTML DOM href 属性
2017-08-06 HTML DOM href 属性 HTML DOM Link 对象 定义和用法 The href property sets or returns the URL of the linked resource. 语法 linkObject.href=URL 实例 The following example changes style sheet: htmlheadlink rel=stylesheet type=text/c
HTML DOM disabled 属性
2017-08-06 HTML DOM disabled 属性 HTML DOM Link 对象 定义和用法 The disabled property sets or returns whether or not the target URL should be disabled. 语法 linkObject.disabled=true|false 实例 The following example disables the style shee
HTML DOM charset 方法
2017-08-06 HTML DOM charset 方法 HTML DOM Link 对象 定义和用法 The charset property sets or returns the character encoding of the target URL. 语法 linkObject.charset=character-encoding 实例 The following example sets the character encodin
HTML DOM select() 方法
2017-08-06 HTML DOM select() 方法 HTML DOM Text 对象 定义和用法 select() 方法用于选取文本域中的内容。 语法 textObject.select() 实例 下面的例子可选取文本域中的内容: htmlheadscript type=text/javascriptfunction
HTML DOM focus() 方法
2017-08-06 HTML DOM focus() 方法 HTML DOM Text 对象 定义和用法 focus() 方法用于赋予文本域焦点。 语法 textObject.focus() 实例 下面的例子可设置和移开文本域上的焦点: htmlheadscript type=text/javascriptfunction
HTML DOM blur() 方法
2017-08-06 HTML DOM blur() 方法 HTML DOM Text 对象 定义和用法 blur() 方法用于从文本域移开焦点。 语法 textObject.blur() 实例 下面的例子可设置和移开文本域上的焦点: htmlheadscript type=text/javascriptfunction
HTML DOM value 属性
2017-08-06 HTML DOM value 属性 HTML DOM Text 对象 定义和用法 value 属性设置或返回文本域的值。 语法 textObject.value=text 实例 下面的例子可获得文本域的值: htmlheadscript type=text/javascriptfunction alertValue()