我们的客户需要为 jQuery-mobile 定制设计单选按钮样式。实际上它与水平模式下默认的 jQuery-mobile 单选按钮设计非常相似。例如 jQuery-mobile 将水平单选按钮定义为
<fieldset data-role="controlgroup" data-type="horizontal">
<legend>I like to buy and wear trendy must-haves</legend>
<input type="radio" name="radio-choice" id="radio-choice-1" value="choice-1" checked="checked" />
<label for="radio-choice-1">1</label>
<input type="radio" name="radio-choice" id="radio-choice-2" value="choice-2" />
<label for="radio-choice-2">2</label>
<input type="radio" name="radio-choice" id="radio-choice-3" value="choice-3" />
<label for="radio-choice-3">3</label>
<input type="radio" name="radio-choice" id="radio-choice-4" value="choice-4" />
<label for="radio-choice-4">4</label>
<input type="radio" name="radio-choice" id="radio-choice-5" value="choice-5" />
<label for="radio-choice-5">5</label>
</fieldset>
此外,我们的客户希望在lablel
. 例如下图
我想知道 jQuery-mobile 是否允许我们显示默认单选按钮?如果可以,你能举个例子吗?
还是我们需要自定义这个?