首頁  >  文章  >  web前端  >  JS實作控製表格只顯示行邊框或只顯示列邊框的方法_javascript技巧

JS實作控製表格只顯示行邊框或只顯示列邊框的方法_javascript技巧

WBOY
WBOY原創
2016-05-16 16:06:531291瀏覽

本文實例講述了JS實作控製表格只顯示行邊框或只顯示列邊框的方法。分享給大家供大家參考。具體分析如下:

透過下面的JS程式碼你可以控製表格只顯示行與行之間的分隔線,也可以只顯示列與列之間的分隔線,主要用到了表格物件的rules屬性

<!DOCTYPE html>
<html>
<head>
<script>
function rowRules()
{
document.getElementById('myTable').rules="rows";
}
function colRules()
{
document.getElementById('myTable').rules="cols";
}
</script>
</head>
<body>
<table id="myTable" border="1">
<tr>
<td>Row1 cell1</td>
<td>Row1 cell2</td>
</tr>
<tr>
<td>Row2 cell1</td>
<td>Row2 cell2</td>
</tr>
<tr>
<td>Row3 cell1</td>
<td>Row3 cell2</td>
</tr>
</table>
<br>
<input type="button" onclick="rowRules()" value="Show only row borders">
<input type="button" onclick="colRules()" value="Show only col borders">
</body>
</html>

希望本文所述對大家的javascript程式設計有所幫助。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn