为了在jQuery选择器中获取以特定字符串开头或结尾的id,您不应使用通配符$('#name *'),$('#name%')。而是使用字符^和$。^用于获取以特定字符串开头的所有元素。$用于获取以特定字符串结尾的所有元素。
您可以尝试运行以下代码,以了解如何获取以特定字符串开头和结尾的id。
<!DOCTYPE html> <html> <head> <script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("[id$=new1]").css("background-color", "yellow"); $("[id^=myid]").css("background-color", "green"); }); </script> </head> <body> <div id="idnew1" myattr="javasubject">Java</div> <div id="idnew2" myattr="htmlsubject">HTML</div> <div id="myid1" myattr="rubysubject">Ruby</div> <div id="myid2" myattr="cppsubject">C++</div> </body> </html>