首页 > 代码库 > Jquery获取select选中的option的文本信息

Jquery获取select选中的option的文本信息

注意:下面用的$(this)代表当前选中的select框

第一种:

$(this).children("option:selected").text();

第二种:

$(this).children("option:selected").html();