ラジオボタンを選択したときに、行の色を変更したいのですが。
「標準」と「標準国際」の2つのラジオボタンがあります。
'standard'値が選択されている場合、テーブル行の色を変更したいのですが、'standard international'がチェックされている場合、'standard'テーブル行をデフォルトの白色に戻したいです。
以下は私のコードです:
<div style="float:right; width:465px;" class="delivery-item">
<table width="100%" border="0" cellspacing="15" cellpadding="15">
<tr>
<td>
<input type="radio" name="[[+method.deliveryKey]]" value="[[+method.id]]" id="delivery-[[+method.id]]" [[+method.selected:notempty=`checked="checked"`]] />
<label style="padding-left:10px; font-weight:bold;" for="delivery-[[+method.id]]">[[+method.title]]</label>
<ul>
<li style="padding-left:25px;" class="distribution">[[%simplecart.methods.yourcontribution? &price=`$ [[+method.price_add:scNumberFormatRev]]`]]</li>
</ul>
</td>
<td width="25%"><li class="total" style="font-size:16px; font-weight:bold;">[[%simplecart.methods.total? &price=`Total $ [[+method.total:scNumberFormatRev]]`]]</li></td>
</tr>
</table>
</div>