私のhtmlコードは次のようなものです:
<div class="span3">
<div>DEBIT/CREDIT</div>
<div class="btn-group" data-toggle="buttons-radio" id="investadjust-debitcredit-button">
<button name="debitCredit" type="button" id="credit-button" class="btn active" value="CREDIT" >CREDIT</button>
<button name="debitCredit" type="button" id="debi-button" class="btn" value="DEBIT" >DEBIT</button>
</div>
</div>
データを取得する JavaScript コード:
$("#investadjust-debitcredit-button>.active").val()
ページ自体をロードすると、値が空になるvalue
ため、選択したボタンの値を取得できません。
これを解決する方法。