我有两个单选按钮。一个低于另一个。我希望下面的显示在第一个的选中按钮下方,保持在第一个的宽度范围内并且以动态方式显示。谢谢你的帮助。
<script>
$(function() {
$( "#categorie" ).buttonset();
$( "#types" ).buttonset();
});
</script>
</head>
<body>
<form>
<div id="categorie">
<input type="radio" id="categorie1" name="categorie" checked="checked"/><label for="categorie1">bla</label>
<input type="radio" id="categorie2" name="categorie" /><label for="categorie2">bla</label>
<input type="radio" id="categorie3" name="categorie" /><label for="categorie3">bla</label>
</div>
<div id="types">
<input type="radio" id="type1" name="type" checked="checked"/><label for="type1">bla</label>
<input type="radio" id="type2" name="type" /><label for="type2">bla</label>
<input type="radio" id="type3" name="type" /><label for="type3">bla</label>
</div>