如何“关闭”jQuery Mobile的下拉风格?

前端之家收集整理的这篇文章主要介绍了如何“关闭”jQuery Mobile的下拉风格?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要关闭jQuery Mobile的< select>下降。最终,我希望设备本身(iPhone,Android,Blackberry等)确定< select>下来看

目前我的标记是(显示用量减少的选择数量):

<div data-role="fieldcontain">
    <label for="state">State:</label>
    <select name="state" id="state" data-role="none">
        <option value="MA">Massachusetts</option> 
        <option value="MI">Michigan</option> 
        <option value="MN" selected="selected">Minnesota</option> 
        <option value="MS">Mississippi</option> 
    </select> 
</div>

我尝试在< select>上使用data-role =“none”但没有改变。

有没有办法“关闭”jQuery Mobile只是选择下拉?

解决方法

根据 http://jquerymobile.com/test/docs/forms/docs-forms.html

如果您希望某个特定的表单控件不被jQuery Mobile保留,只需将该元素的属性data-role =“none”。例如:

<label for="foo">
<select name="foo" id="foo"  data-role="none">
<option value="a" >A</option>
<option value="b" >B</option>
<option value="c" >C</option>
</select>
原文链接:https://www.f2er.com/jquery/183348.html

猜你在找的jQuery相关文章