虛線框img元素我有圖像的列表中的表像這樣:jQuery的 - 查找與名單之中
<div id="scroll-uploader-photos">
<table>
<tr>
<td><img class="uploader_thumbs" style="border:solid 3px grey;"></td>
<td><img class="uploader_thumbs" style="border:solid 3px grey;"></td>
<td><img class="uploader_thumbs" style="border:solid 3px grey;"></td>
<td><img class="uploader_thumbs" style="border:solid 3px grey;"></td>
<td><img class="uploader_thumbs" style="border:dashed 3px red;"></td>
</tr>
</table>
</div>
使用jQuery 1.7.1,我怎麼能選擇具有虛線邊框圖像元素?
我是否正確地說我需要使用.find()或類似的循環遍歷元素,並測試循環中的每個項目的CSS屬性「border:dashed 3px red」?這是正確的方式還是有一個更簡單的方法?
總是感激地收到了幫助和建議。
Aaaah,好的,謝謝一堆。是否有原因使用RGB值而不是HEX或顏色? – TheCarver
這就是jQuery如何在開發工具中顯示它,因爲我們正在做一個字符串比較,我就是這麼做的。 – sachleen