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.
我的页面中有 ID 为“abc_1_2_3_xyz”的元素。如何在 Jquery 中选择以“abc”开头并以“xyz”结尾的元素?
$('div[id^="abc"], div[id$="xyz"]');
您可以使用 2 个属性选择器。
$('div[id^="abc"][id$="xyz"]');
尝试以下操作:
http://api.jquery.com/multiple-attribute-selector/
使用过滤器:
$('div') .filter(function() { return this.id.match(/^abc+xyz$/); }) .html("Matched!") ;