我在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上有很多这个问题的答案,但那些并没有解决我的问题。
答案 0 :(得分:2)
最后遗漏});
,您需要收听change
事件。
请改为尝试:
$(document).ready(function () {
$('#ProductCategoryId').on('change', function() {
alert( $('option:selected', this).text() );
alert( $(this).val() );
});
});