【发布时间】:2014-04-23 23:40:57
【问题描述】:
我正在使用 jQuery Mobile 1.4.2 为表单创建水平(内联)单选。有谁知道如何轻松地将自定义图标(png)或 jQuery Mobile 图标添加到 Radio Form 元素?
http://demos.jquerymobile.com/1.4.2/checkboxradio-radio/
在 w3schools 上有一个不错的横向演示:
http://www.w3schools.com/jquerymobile/tryit.asp?filename=tryjqmob_forms_horizontal
<fieldset data-role="controlgroup" data-type="horizontal">
<legend>Choose as many favorite colors as you'd like:</legend>
<label for="red">Red</label>
<input type="checkbox" name="favcolor" id="red" value="red">
<label for="green">Green</label>
<input type="checkbox" name="favcolor" id="green" value="green">
<label for="blue">Blue</label>
<input type="checkbox" name="favcolor" id="blue" value="blue">
</fieldset>
【问题讨论】:
标签: javascript jquery css html jquery-mobile