- 所有超级接口:
-
Element
,HTMLElement
,Node
表中的一行。请参阅HTML 4.0中的TR元素定义。
另请参阅文档对象模型(DOM)级别2规范。
- 自从:
- 1.4, DOM Level 2
-
Field Summary
Fields declared in interface org.w3c.dom.Node
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_POSITION_CONTAINED_BY, DOCUMENT_POSITION_CONTAINS, DOCUMENT_POSITION_DISCONNECTED, DOCUMENT_POSITION_FOLLOWING, DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC, DOCUMENT_POSITION_PRECEDING, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE
-
Method Summary
Modifier and TypeMethodDescriptionvoid
deleteCell
(int index) 从当前行中删除一个单元格。getAlign()
该行单元格中数据的水平对齐方式。行的背景颜色。getCells()
该行中的单元格集合。getCh()
列中单元格的对齐字符。getChOff()
对齐字符的偏移量。int
该行的索引,相对于整个表,从0开始。int
该行的索引,相对于当前部分(THEAD
,TFOOT
或TBODY
),从0开始。该行单元格中数据的垂直对齐方式。insertCell
(int index) 在该行中插入一个空的TD
单元格。void
void
setBgColor
(String bgColor) void
void
void
Methods declared in interface org.w3c.dom.Element
getAttribute, getAttributeNode, getAttributeNodeNS, getAttributeNS, getElementsByTagName, getElementsByTagNameNS, getSchemaTypeInfo, getTagName, hasAttribute, hasAttributeNS, removeAttribute, removeAttributeNode, removeAttributeNS, setAttribute, setAttributeNode, setAttributeNodeNS, setAttributeNS, setIdAttribute, setIdAttributeNode, setIdAttributeNS
Methods declared in interface org.w3c.dom.html.HTMLElement
getClassName, getDir, getId, getLang, getTitle, setClassName, setDir, setId, setLang, setTitle
Methods declared in interface org.w3c.dom.Node
appendChild, cloneNode, compareDocumentPosition, getAttributes, getBaseURI, getChildNodes, getFeature, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, getTextContent, getUserData, hasAttributes, hasChildNodes, insertBefore, isDefaultNamespace, isEqualNode, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, normalize, removeChild, replaceChild, setNodeValue, setPrefix, setTextContent, setUserData
-
Method Details
-
getRowIndex
int getRowIndex()该行的索引,相对于整个表,从0开始。这是按文档树顺序而不是显示顺序。rowIndex
不考虑表中的部分(THEAD
,TFOOT
或TBODY
)。 -
getSectionRowIndex
int getSectionRowIndex()该行的索引,相对于当前部分(THEAD
,TFOOT
或TBODY
),从0开始。 -
getCells
HTMLCollection getCells()该行中的单元格集合。 -
getAlign
String getAlign()该行单元格中数据的水平对齐方式。请参阅HTML 4.0中的align属性定义。 -
setAlign
-
getBgColor
String getBgColor()行的背景颜色。请参阅HTML 4.0中的bgcolor属性定义。此属性在HTML 4.0中已弃用。 -
setBgColor
-
getCh
String getCh()列中单元格的对齐字符。请参阅HTML 4.0中的char属性定义。 -
setCh
-
getChOff
String getChOff()对齐字符的偏移量。请参阅HTML 4.0中的charoff属性定义。 -
setChOff
-
getVAlign
String getVAlign()该行单元格中数据的垂直对齐方式。请参阅HTML 4.0中的valign属性定义。 -
setVAlign
-
insertCell
在该行中插入一个空的TD
单元格。如果index
等于单元格数,则新单元格将被追加。- 参数:
-
index
- 要插入单元格的位置,从0开始。 - 返回:
- 新创建的单元格。
- 抛出:
-
DOMException
- INDEX_SIZE_ERR: 如果指定的index
大于单元格数或索引为负。
-
deleteCell
从当前行中删除一个单元格。- 参数:
-
index
- 要删除的单元格的索引,从0开始。 - 抛出:
-
DOMException
- INDEX_SIZE_ERR: 如果指定的index
大于或等于单元格数或索引为负。
-