请建议,如何在更改时找到html选择的选定值。
代码在
之下$(".js-CellFirst").change(function () {
alert($(this.find('option:selected')).text());<-- **trouble line**
});
感谢
答案 0 :(得分:2)
Get selected value of a dropdown's item using jQuery
只需使用alert($(this).val();
:
$(".js-CellFirst").change(function () {
alert($(this).val());
});
答案 1 :(得分:2)
获得价值......
$(".js-CellFirst").val();
获取所选option
元素的文本。
$(".js-CellFirst option:selected").text();
但是,您的具体问题是您的括号,您已正确嵌套。正确使用是......
alert($(this).find('option:selected').text());