close

方法:

開頭字串為 ^

結尾字串為 $

程式範例:

找到開頭字串「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>&nbsp;</p>
<ol>
<li id="red_1">第一</li>
<li id="k4">第二</li>
<li id="k_blue">第三</li>
<li id="r2">第四</li>
</ol>

</body>
</html>

arrow
arrow
    文章標籤
    javascript jQuery
    全站熱搜
    創作者介紹
    創作者 小甲學習地 的頭像
    小甲學習地

    學習資訊部落

    小甲學習地 發表在 痞客邦 留言(0) 人氣()