我正在尝试设置一些引导单选按钮。代码看起来像Bootstrap示例中的代码,但是不会触发事件以将标签设置为活动状态。 这是我的代码:
ImageView animationTarget = (ImageView) this.findViewById(R.id.testImage);
Animation animation = AnimationUtils.loadAnimation(this, R.anim.rotate_around_center_point);
animationTarget.startAnimation(animation);
我没有对JavaScript后端的单选按钮做任何事情。这可能是什么问题?
答案 0 :(得分:3)
您没有添加jquery插件: 这是工作答案
https://jsfiddle.net/sesn/wLvzd193/2/
你的html没什么问题
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-sm btn-success active">
<input type="radio" name="mergeType" id="radio1" value="OVW">Überschreiben
</label>
<label class="btn btn-sm btn-success">
<input type="radio" name="mergeType" id="radio2" value="ADD" checked>Hinzufügen
</label>
<label class="btn btn-sm btn-success">
<input type="radio" name="mergeType" id="radio3" value="KEE">Gefunde behalten
</label>
<label class="btn btn-sm btn-success">
<input type="radio" name="mergeType" id="radio4" value="DEL">Gefundene entfernen
</label>
</div>
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary active">
<input type="radio" name="options" id="option1" autocomplete="off" checked> Radio 1 (preselected)
</label>
<label class="btn btn-primary">
<input type="radio" name="options" id="option2" autocomplete="off"> Radio 2
</label>
<label class="btn btn-primary">
<input type="radio" name="options" id="option3" autocomplete="off"> Radio 3
</label>
</div>
答案 1 :(得分:0)
在答案中出现jsfiddle链接有一些奇怪的问题。堆栈溢出的新堆栈代码是首选。但是,我现在没有时间弄清楚如何使用堆栈片段。
很抱歉这个长篇介绍。只需将代码复制并粘贴到jsfiddle中即可运行。代码工作得很好。我的意思是你想让单选按钮切换,对吧?那么,你去吧!
如果您有任何疑问,请恢复。