DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> gridview生成時如何去掉style屬性中的border-collapse
gridview生成時如何去掉style屬性中的border-collapse
編輯:關於JavaScript     

在vs2005下用到gridview時,默認的情況下gridview控件會在生成的html代碼中的style屬性中加入border-collapse:collapse;

復制代碼 代碼如下:
<asp:GridView ID="GridView1" runat="server" BorderWidth="0"></asp:GridView>

綁定數據運行後頁面中的代碼為:

<table cellspacing="0" rules="all" border="0" id="GridView1" style="border-width:0px;border-collapse:collapse;">
<tr>
<th scope="col">id</th><th scope="col">name</th>
</tr><tr>
<td>1</td><td>1</td>
</tr><tr>
<td>2</td><td>2</td>
</tr>
</table>

gridview控件就自動給加上了:border-collapse:collapse;

要想去掉這個自動加入的代碼只要將 CellSpacing="-1"就可以了,加上後html的代碼為

<table rules="all" border="0" id="GridView1" style="border-width:0px;">
<tr>
<th scope="col">id</th><th scope="col">name</th>
</tr><tr>
<td>1</td><td>1</td>
</tr><tr>
<td>2</td><td>2</td>
</tr>
</table>

補充一點:

GridLines="None" 不顯示單元格邊框
CellSpacing="-1" 去掉GridView style中的border-collapse:collapse;樣式

備注:在firefox浏覽器遇到的問題,邊框合並導致部分邊框線條變粗,GridLines="None" 可以解決

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved