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.
可能重复: 使用 jquery 选择下拉选项
直升机,
我想使用 jquery 从下拉列表中获取选定的文本。
谢谢
仅使用纯 jquery 会是这样的
$("#idofyourdropdown option:selected").text();
试试这样:
$("#yourdropdown option:selected").text();