我尝试使用带有Bootstrap单选按钮的onclick事件来获取名称和属性,但是有些内容并不顺利。
某些单选按钮触发了该事件,但未获得名称或类别(“未定义”),有些按钮根本没有响应。
<div class="theContainer">
<input type="radio" class="myClass" name="options" id="option1" onclick="updateODid()" autocomplete="off" > Radio 1
<input type="radio" class="myClass" name="options" id="option2" onclick="updateODid()" autocomplete="off"> Radio 2
<input type="radio" class="myClass" name="options" id="option3" onclick="updateODid()" autocomplete="off"> Radio 3
<input type="hidden" class="findme" value="found me!">
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary active">
<input type="radio" class="myClass" name="options" id="option1" onclick="updateODid()" autocomplete="off" > Radio 1
</label>
<label class="btn btn-primary">
<input type="radio" class="myClass" name="options" id="option2" onclick="updateODid()" autocomplete="off"> Radio 2
</label>
<label class="btn btn-primary">
<input type="radio" class="myClass" name="options" id="option3" onclick="updateODid()" autocomplete="off"> Radio 3
</label>
</div>
</div>
谢谢!
答案 0 :(得分:3)
它不起作用,因为你以错误的方式混合了javascript和jquery。
请检查更新的代码段:https://jsfiddle.net/2sc8mc7L/12/ onclick函数应如下所示:
$(".myClass").on('click',function(){
radioButtonClick($(this));
});
$("label.btn-primary").on('click',function(){
radioButtonClick($(this).find('.myClass'));
});
function radioButtonClick(_this){
alert("I'm in!")
alert (_this.attr('name'));
alert (_this.attr('class'));
alert (_this.closest(".theContainer").find(".findme").val());
}
答案 1 :(得分:1)
您可以尝试这样做,对updateODid(this)
使用onclick
,它将使用当前实例
function updateODid(button)
{
//alert("I'm in!")
alert ($(button).attr('name'));
alert ($(button).attr('class'));
alert ($(button).closest(".theContainer").find(".findme").val())
}
&#13;
<div class="theContainer">
<input type="radio" class="myClass" name="options" id="option1" onclick="updateODid(this)" autocomplete="off" > Radio 1
<input type="radio" class="myClass" name="options" id="option2" onclick="updateODid(this)" autocomplete="off"> Radio 2
<input type="radio" class="myClass" name="options" id="option3" onclick="updateODid(this)" autocomplete="off"> Radio 3
<input type="hidden" class="findme" value="found me!">
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary active">
<input type="radio" class="myClass" name="options" id="option1" onclick="updateODid(this)" autocomplete="off" > Radio 1
</label>
<label class="btn btn-primary">
<input type="radio" class="myClass" name="options" id="option2" onclick="updateODid(this)" autocomplete="off"> Radio 2
</label>
<label class="btn btn-primary">
<input type="radio" class="myClass" name="options" id="option3" onclick="updateODid(this)" autocomplete="off"> Radio 3
</label>
</div>
</div><script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
&#13;