2

嗨,你能帮我弄清楚如何使用 jQuery 在 Bootsramp 中获取所选 btn-group 的值吗?

这是一个演示,这是代码class="btn-group" data-toggle="buttons-radio":

<div class="btn-group" data-toggle="buttons-radio">
<button type="button" class="btn btn-primary">Left</button>
<button type="button" class="btn btn-primary">Middle</button>
<button type="button" class="btn btn-primary">Right</button>
</div>
4

2 回答 2

6

你可以这样做 text()

$('.btn-group .btn').on("click",function(){

   alert($(this).text())
})

jsFiddle

于 2012-12-12T07:55:34.730 回答
2

一些像这样的 jQuery 可以解决问题:

​$(document).ready(function(){
    $(".btn-group .btn").on('click', function(){
        console.log($(this).text());
    });        
});​
于 2012-12-12T07:56:17.260 回答