jquery 匹配开头,结尾 ZPY 6年 ago // 匹配开头的元素: $("select[id^='aaa']") // 匹配结尾的元素: $("select[id$='aaa']") // 匹配包含的元素: $("select[id*='aaa']")