3
我有表結構如下:如何用jQuery改變'text-decoration'屬性?
<table style=" margin-top: 10px; border: 1px wheat solid; width: 100%; font-size: 10px; font-family: Arial , Verdana;text-shadow:0px 1px 0px #000">
<tr class="infoRow" style="background:#666666; ">
<td>Element11 </td>
<td style="font-size:12px; font-weight:bold; font-family: georgia;">Element12 </td>
<td><input type="checkbox" class="check" /></td>
</tr>
<tr class="infoRow" style="background:#666666; ">
<td>Element21 </td>
<td style="font-size:12px; font-weight:bold; font-family: georgia;">Element22 </td>
<td><input type="checkbox" class="check" /></td>
</tr>
</table>
我想,檢查<input class="check" ... />
屬性文本修飾的值後使「底線」以下行。
$('.check').click(function(){
$('infoRow').css("text-decoration", "underline");
});
此代碼更改所有行。
在此先感謝。
很好的答案。 我的2美分 - 這是一個更好的做法,在受影響的元素中添加一個'class'(並在樣式表中對其進行相應設置),而不是直接使用'.css()'方法更改樣式。 – apnerve
很好的答案。謝謝! – dido