如何用jquery获取多个<select>下拉列表所选中的值

2025-05-09 07:45:35
推荐回答(1个)
回答1:

$("select option:selected").each(function(){
// todo
});