tr ch 屬性
tr 對(duì)象定義和用法
ch 屬性可設(shè)置或者返回在行中單元格的對(duì)齊字符。
在同一列中的所有單元格的內(nèi)容對(duì)齊依賴于該字符。
語(yǔ)法
設(shè)置 ch 屬性:
trObject.ch="text"
返回 ch 屬性:
trObject.ch
提示: ch 屬性沒有默認(rèn)值。
瀏覽器支持
所有主流瀏覽器都支持 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>?
<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ì)象
更多建議: