HTMLTableRowElement
The HTMLTableRowElement interface provides special properties and methods (beyond the HTMLElement interface it also has available to it by inheritance) for manipulating the layout and presentation of rows in an HTML table.
Properties
Inherits properties from its parent, HTMLElement.
HTMLTableRowElement.align已弃用-
Is a
DOMStringcontaining an enumerated value reflecting thealignattribute. It indicates the alignment of the element's contents with respect to the surrounding context. The possible values are"left","right", and"center". HTMLTableRowElement.bgColor已弃用-
Is a
DOMStringcontaining the background color of the cells. It reflects the obsoletebgcolorattribute. HTMLTableRowElement.cells只读-
Returns a live
HTMLCollectioncontaining the cells in the row. TheHTMLCollectionis live and is automatically updated when cells are added or removed. HTMLTableRowElement.ch已弃用-
Is a
DOMStringcontaining one single character. This character is the one to align all the cell of a column on. It reflects thecharand default to the decimal points associated with the language, e.g.'.'for English, or','for French. This property was optional and was not very well supported. HTMLTableRowElement.chOff已弃用-
Is a
DOMStringcontaining a integer indicating how many characters must be left at the right (for left-to-right scripts; or at the left for right-to-left scripts) of the character defined byHTMLTableRowElement.ch. This property was optional and was not very well supported. HTMLTableRowElement.rowIndex只读-
Returns a
longvalue which gives the logical position of the row within the entire table. If the row is not part of a table, returns-1. HTMLTableRowElement.sectionRowIndex只读-
Returns a
longvalue which gives the logical position of the row within the table section it belongs to. If the row is not part of a section, returns-1. HTMLTableRowElement.vAlign已弃用-
Is a
DOMStringrepresenting an enumerated value indicating how the content of the cell must be vertically aligned. It reflects thevalignattribute and can have one of the following values:"top","middle","bottom", or"baseline".
Methods
Inherits methods from its parent, HTMLElement.
HTMLTableRowElement.deleteCell()-
Removes the cell at the given position in the row. If the given position is greater (or equal as it starts at zero) than the amount of cells in the row, or is smaller than
0, it raises aDOMExceptionwith theIndexSizeErrorvalue. HTMLTableRowElement.insertCell()(en-US)-
Inserts a new cell just before the given position in the row. If the given position is not given or is
-1, it appends the cell to the row. If the given position is greater (or equal as it starts at zero) than the amount of cells in the row, or is smaller than-1, it raises aDOMExceptionwith theIndexSizeErrorvalue. Returns a reference to a HTMLTableCellElement [en-US] (en-US).
Specifications
| Specification |
|---|
| HTML Standard # htmltablerowelement |
Browser compatibility
BCD tables only load in the browser
See also
- The HTML element implementing this interface:
<tr>.