Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个名为 City 的字段,它是一个下拉列表。它有一个键值对。
要获取该值,我可以在 Jquery 中简单地执行以下操作:
var city = $("#city").val();
我如何获得关键值?
所以你想要所选选项的文本:
$('#city').find('option:selected').text();
如果它是选择中的一个选项,请尝试.text().
.text()