jQuery 移动选择 - 摆脱图标 (1.2)



我无法摆脱jquery移动版选择菜单中的图标。我尝试使用之前问题中选择的数据图标,但它似乎不起作用(请参阅 jsfiddle)。

<label for="select-choice-0" class="select">Shipping method:</label>
                <select name="select-choice-0" id="select-choice-0" data-iconpos="none">
                   <option value="standard">Standard: 7 day</option>
                   <option value="rush">Rush: 3 days</option>
                   <option value="express">Express: next day</option>
                   <option value="overnight">Overnight</option>
                </select>​

JS小提琴:http://jsfiddle.net/ggSBu/

试试这个...

$(".ui-select .ui-icon").remove();​​​

这是您的小提琴的更新版本...

http://jsfiddle.net/ggSBu/1/

最新更新