我正在尝试为所选按钮选择值,如下所示:
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()
但我只有empty
在选择一个按钮后打印上述行时才会得到。
可能是什么原因。