我對jQuery並不擅長,或者根本不擅長,但是我需要創建一個jQuery/Javascript函數,它將搜索特定表中的所有圖像。因此,指標分析是,該表必須有一個屬性「摘要」 ,它必須等於「論壇」(摘要=論壇)使用jQuery遍歷表中的所有圖像
<table width="100%" class="ms-disc" dir="none" border="0"
cellSpacing="0" cellPadding="1" summary="Forum">
所以,如果是這樣的表,然後我需要檢查,如果運輸署班級「特定班級」 <td class="ms-disc-bordered">
。有可能在那個td可以是另一個表,並且只有在那個表中有一個td ... 但是這並不重要,只是要知道它是嵌套的,並且可以在較低的lvl的圖像上。
然後裏面的圖像可以調整大小。
現在我有這樣的代碼:
function ResizeImages()
{
jQuery(document).ready(function()
{
var table = $("").find()
table.each("td")(function()
{
if(hassummary & summary.equals("forum"))
{
var img=table.find("image")
img.height="";
img.weight="";
}
}
}
}
UPDATE: 所以這是層次結構:
<table summary="forum">
.....
<table>
<table>
<tr>
<td class="particular class">
<a link>
<image> the one i need to get</image>
</a>
</td>
</tr>
</table> </table></table> ....
第一:有沒有辦法以某種方式標記圖像?第二:我是否正確地聲明'img'總是(嵌套)在一個'td.particularClass'內,它嵌套在一個'table'裏面並且有一個屬性'summary = forum'? – 2012-02-02 09:43:09
顯示您的標記。 – adarshr 2012-02-02 09:43:51
如果一個嵌套表只應該被查看,如果它是在一個標記爲''的內部,那麼這是非常重要的 – Alnitak 2012-02-02 09:45:05