我有這個代碼,我需要的是當選擇一個單選按鈕我想顯示subscription_rate div。目前這兩個主DIV一起顯示。我需要在單擊單選按鈕時隱藏subcription_rate div。選擇一個單選按鈕後顯示一個div
希望有人幫助我這個..
這是到目前爲止我的代碼...
<div class="form-element-row">
<div class="first-child">
<label for="name">Registration Period<img alt="required" src="images/required_star.png" />:</label>
</div>
<div class="last-child">
<input type="radio" name="period" value="1" />1 Year
<input type="radio" name="period" value="2" />2 Years
<input type="radio" name="period" value="3" />3 Year
</div>
</div>
<div class="subscription_rate">
<div class="first-child">
<label> </label>
</div>
<div class="last-child">
<table>
<tr>
<th>Subscription Rate</th>
<th>1 Year</th>
<th>2 Years</th>
<th>3 Years</th>
</tr>
<tr>
<td style="text-align: left;">Lanka Institute Rates for Tutors within their subscription period.</td>
<td width="18%">Rs.3000</td>
<td width="18%">Rs.4500<br /><span>Save 25%</span></td>
<td width="18%">Rs.7500<br /><span>Save 50%</span></td>
</tr>
</table>
</div>
</div>
我需要隱藏subscription_rate div再次點擊選定的電臺對接在......我知道這有可能嗎? – TNK
您可以使用toogle,查看我更新的答案。 – Adil
我可以使用slideDown()在toggle()中添加一些動畫嗎? – TNK