你好,我想使div的我有我的td的行爲作爲href的。我怎樣才能做到這一點?HTML DIV的TD內部作爲href的
也許與jQuery或JavaScript,如果不與HTML ?? ??
<table class="mgmtview_table" align="center">
<tr>
<td class="content" id="content">
<table class="content_table">
<tr>
<td class="topBar">
<div id="div_view" align="center">FusionCharts will load here!</div>
</td>
<td class="topBar">
<div id="div_view2" align="center">FusionCharts will load here!</div>
</td>
<td class="topBar">
<div id="div_view3" align="center">FusionCharts will load here!</div>
</td>
</tr>
<tr>
<td class="topBar">
<div id="div_view4" align="center">FusionCharts will load here!</div>
</td>
<td class="topBar">
<div id="div_view5" align="center">FusionCharts will load here!</div>
</td>
<td class="topBar">
<div id="div_view6" align="center">FusionCharts will load here!</div>
</td>
</tr>
<tr>
<td class="topBar">
<div id="div_view7" align="center">FusionCharts will load here!</div>
</td>
<td class="topBar">
<div id="div_view8" align="center">FusionCharts will load here!</div>
</td>
<td class="topBar">
<div id="div_view9" align="center">FusionCharts will load here!</div>
</td>
</tr>
爲什麼不只是使用標籤? – manish
我同意伊馬尼亞語 - 你爲什麼要這麼做? –
確實。你可以將它們設置爲'display:block'來使它們像一個塊元素(就像一個div)一樣,所以你可以像使用div一樣給它賦予寬度,高度和其他屬性。根本不需要Javascript。 – GolezTrol