htmloptgroupelement.java
来自「使用方法: 实例程序的运行: 每个实例下都有本实例的.xml文件或.htm」· Java 代码 · 共 24 行
JAVA
24 行
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 + =
减小字号Ctrl + -
显示快捷键?