Questions tagged «sizzle»

6
jQuery选择器中的通配符
我正在尝试使用通配符获取ID以“ jander”开头的所有元素的ID。我试过了$('#jander*'),$('#jander%')但是没有用。 我知道我可以使用元素的类来解决它,但是也可以使用通配符? <script type="text/javascript"> var prueba = []; $('#jander').each(function () { prueba.push($(this).attr('id')); }); alert(prueba); }); </script> <div id="jander1"></div> <div id="jander2"></div>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.