方法:
開頭字串為 ^
結尾字串為 $
程式範例:
找到開頭字串「red」為紅色 $('ol li[id^="red"]').addClass('red');
找到結尾字串「blue」為藍色 $('ol li[id$="blue"]').addClass('blue');
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>選擇id屬性為開頭或結尾的字串</title>
<style type="text/css">
.red{color:red;}
.blue{color:blue;}
</style>
</head>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script language="javascript">
$(document).ready(function(){
$('ol li[id^="red"]').addClass('red');
$('ol li[id$="blue"]').addClass('blue');
});
</script>
<body>
<p> </p>
<ol>
<li id="red_1">第一</li>
<li id="k4">第二</li>
<li id="k_blue">第三</li>
<li id="r2">第四</li>
</ol>
</body>
</html>