📄 htmloptgroupelement.java
字号:
package org.w3c.dom.html;
import org.w3c.dom.*;
/**
* Group options together in logical subdivisions. See the OPTGROUP element
* definition in HTML 4.0.
*/
public interface HTMLOptGroupElement extends HTMLElement {
/**
* The control is unavailable in this context. See the disabled attribute
* definition in HTML 4.0.
*/
public boolean getDisabled();
public void setDisabled(boolean disabled);
/**
* Assigns a label to this option group. See the label attribute definition
* in HTML 4.0.
*/
public String getLabel();
public void setLabel(String label);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -