jquery操作select汇总
1.获取select选中的值
contentType: "application/json; charset=utf-8",
dataType:'json',
data:JSON.stringify({
name:$(this).parents('.secText').children('input').val(),//怎么样
description:' ',
id:$(this).parents('.secText').find('.updateSec2 option:selected').attr('value')
})
$('.updateSec').find('select option:selected').attr('value')
"2"//取得选中的value值
$('.updateSec').find('select option:selected').val();
"2"//取得选中的value值
$('.updateSec').find('select option:selected').text();
"组队约伴"//取得选中的文本