我需要关闭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>