如何从select(selected)jquery中的下拉事件获取值onchange事件

时间:2015-03-01 13:26:32

标签: jquery select jquery-plugins cakephp-2.3

我在select jquery

的帮助下制作了下拉列表
echo $this->Form->input('Category', 
            array(
                'data-rel' =>'chosen',
                'style' => 'width:220px; margin-bottom:10px',
                'placeholder' => 'Select Category',
                'empty'=>'Select',
                'id'=>'ProductCategoryId',
                array('class'=>'required') 
                )); 

现在我正在尝试检索值onchange 我尝试使用代码来获取值和文本。 (我的基本目的是获得价值)

<script>
$(document).ready(function () {
    alert($("#ProductCategoryId option:selected").text()); 
    alert($('#ProductCategoryId').val());
</script>

可能已经在SO上有很多这个问题的答案,但那些并没有解决我的问题。

1 个答案:

答案 0 :(得分:2)

最后遗漏});,您需要收听change事件。

请改为尝试:

$(document).ready(function () {
    $('#ProductCategoryId').on('change', function() {
        alert( $('option:selected', this).text() ); 
        alert( $(this).val() );
    });
});