如何使用jQuery Mobile选择器菜单?

时间:2011-05-05 02:09:01

标签: jquery-mobile

我终于找到了jQuery Mobile选择器菜单组件的HTML,感谢我的其他question,但我又被卡住了。

我目前正在使用这段代码,效果很好:

<div data-role="content">   
    <div data-role="fieldcontain"> 
        <label for="select-choice-nc" class="select">Font Choice:</label> 
        <select name="select-choice-4" id="select-choice-nc"> 

            <option value="arial">Arial</option> 
            <option value="papyrus">Papyrus</option> 
            <option value="helvetica">Helvetica</option> 
            <option value="calibri">Calibri</option> 

        </select> 
    </div> 
</div><!-- /content -->

但是如何判断选择了哪个选项?

1 个答案:

答案 0 :(得分:2)

就像jQuery sans Mobile(也许是jQuery Immobile?)。与其他表单元素一样,使用.val()获取<select>

的值
$('#select-choice-nc').val();