html是
<select class='pay-type' style='width:100%'>
<option>Credit Card</option>
<option>Cash</option>
<option>Credit Note</option>
option>Gift Voucher</option>
<option>Cheque</option>
</select>
我通过将相同的 html 插入新的 div 来重现此选择。我编写了一个模块,该模块在下拉列表中的选择更改时触发。如何在 onclick 函数中获取确切下拉列表的选定值?以下代码似乎不起作用。
$('.pay-type').change(function(){
console.log($(this).filter('option :selected'));
});