Table rules 屬性
Table 對(duì)象定義和用法
rules 屬性可設(shè)置或返回表格的內(nèi)部邊線。
語(yǔ)法
設(shè)置 rules 屬性:
tableObject.rules="none|groups|rows|cols|all"
返回 rules 屬性:
tableObject.rules
值 | 描述 |
---|---|
none | 沒(méi)有內(nèi)部邊界 |
groups | 顯示行組和列組之間的內(nèi)部邊界 |
rows | 顯示內(nèi)部行之間的邊界 |
cols | 顯示的列之間內(nèi)部邊界 |
all | 顯示行和列之間的內(nèi)邊界 |
瀏覽器支持
所有主要瀏覽器都支持 rules 屬性
注意: IE9可以正確顯示此屬性。早期版本的IE 除了內(nèi)部四個(gè)邊界外,還會(huì)添加四個(gè)外邊界。
注意: Chrome 和 Safari 可以正確顯示此屬性: 除了內(nèi)邊框外還會(huì)影響外邊框。
實(shí)例
實(shí)例
下面的例子設(shè)置了表格的兩種不同的內(nèi)部邊線:
<html>
<head>
<script>
function rows()
{
document.getElementById('myTable').rules="rows";
}
function cols()
{
document.getElementById('myTable').rules="cols";
}
</script>
</head>
<body>
<table id="myTable">
? <tr>
??? <td>cell 1</td>
??? <td>cell 2</td>
? </tr>
? <tr>
??? <td>cell 3</td>
??? <td>cell 4</td>
? </tr>
</table>
<br>
<button type="button" onclick="rows()">Show only row borders</button>
<button type="button" onclick="cols()">Show only col borders</button>
</body>
</html>
<head>
<script>
function rows()
{
document.getElementById('myTable').rules="rows";
}
function cols()
{
document.getElementById('myTable').rules="cols";
}
</script>
</head>
<body>
<table id="myTable">
? <tr>
??? <td>cell 1</td>
??? <td>cell 2</td>
? </tr>
? <tr>
??? <td>cell 3</td>
??? <td>cell 4</td>
? </tr>
</table>
<br>
<button type="button" onclick="rows()">Show only row borders</button>
<button type="button" onclick="cols()">Show only col borders</button>
</body>
</html>
嘗試一下 ?
Table 對(duì)象
更多建議: