HTML DOM tr ch 屬性

2018-08-04 20:41 更新

tr ch 屬性

tr 對(duì)象參考手冊(cè) tr 對(duì)象

定義和用法

ch 屬性可設(shè)置或者返回在行中單元格的對(duì)齊字符。

在同一列中的所有單元格的內(nèi)容對(duì)齊依賴于該字符。

語(yǔ)法

設(shè)置 ch 屬性:

trObject.ch="text"

返回 ch 屬性:

trObject.ch

提示: ch 屬性沒有默認(rèn)值。


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主流瀏覽器都支持 ch 屬性,然而,沒有任何主流瀏覽器實(shí)現(xiàn)該功能。


實(shí)例

實(shí)例

對(duì)齊"Savings"的列:

<html>
<head>
<script>
function displayResult()
{
var c=document.getElementById("myCol");
alert("The alignment character for the second column is: " + c.ch);
}
</script>
</head>
<body>

<table border="1">
? <colgroup>
??? <col>
??? <col id="myCol" align="char" char=".">
? </colgroup>
? <tr>
??? <th>Month</th>
??? <th>Savings</th>
? </tr>
? <tr>
??? <td>January</td>
??? <td>$100.00</td>
? </tr>
? <tr>
??? <td>February</td>
??? <td>$10.00</td>
? </tr>
</table>

<button type="button" onclick="displayResult()">Get alignment character</button>

</body>
</html>?

嘗試一下 ?


tr 對(duì)象參考手冊(cè) tr 對(duì)象
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)