$('#selectList :selected').text()
is known syntax
$('#selectList:selected')。text()是已知的语法
i have to fetch the value for the same from $(this)
instead of $('#selected')
我必须从$(this)而不是$('#selected')获取相同的值
something like this
这样的事情
$(this :selected').text()
?
$(this:selected')。text()?
3 个解决方案
#1
9
$() can take two arguments:
$()可以带两个参数:
$(selector, context)
so it may be possible to use
所以有可能使用
$(':selected', this).text();
#2
4
You can use either
你可以使用其中之一
$(':selected', this).text();
or
要么
$(this).find(':selected').text();
#3
2
Or you can also do something like this:
或者您也可以这样做:
$(this).find(":selected").text();
$(本).find( “:选择”)。文本();
#1
9
$() can take two arguments:
$()可以带两个参数:
$(selector, context)
so it may be possible to use
所以有可能使用
$(':selected', this).text();
#2
4
You can use either
你可以使用其中之一
$(':selected', this).text();
or
要么
$(this).find(':selected').text();
#3
2
Or you can also do something like this:
或者您也可以这样做:
$(this).find(":selected").text();
$(本).find( “:选择”)。文本();