我正在尝试根据单选按钮的选择制作一些显示两个 div 之一的东西。就单选按钮而言,我有以下代码:
<input type="radio" name="radio-269" value="Purchase Only" />
<input type="radio" name="radio-269" value="Sale Only" />
<input type="radio" name="radio-269" value="Purchase and Sale" />
然后我的DIV:
<div id="purchaseandsale" class="hidden" style="padding-top:10px; padding-bottom:10px; background-color: grey;">
Purchase and Sale
</div>
<div id="purchaseorsale" class="hidden" style="padding-top:10px; padding-bottom:10px; background-color: grey;">
Purchase or Sale
</div>
我的Javascript:
<script>
$("select[name='radio-269']").change(function() {
if ($(this).val() == "Purchase and Sale") {
$('#added_fields').removeClass("hidden");
}
else {
$('#added_fields').addClass("hidden");
}
});
</script>
首先,它不起作用并且不会在控制台中给我一个错误。如果显示“购买”或“销售”单选按钮,我怎样才能让它显示 purcahseorsale div?