我有我的代碼有問題:jQuery的過濾器「」標籤與條件
$('.tag').filter(function(){ return this.href.toLowerCase().match(/tagged\/large$/);}).hide();
$('.tag').filter(function(){ return this.href.toLowerCase().match(/tagged\/_large$/);}).hide();
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<a class="tag" href="/tagged/laRge">large</a>
我想我的網頁上隱藏的「一」的標籤,其中包括「標記/大「或」tagged/_large「在href屬性中,無論它是用大寫字母還是小寫字母來寫。 現在我在兩個單獨的腳本中都有可能的鏈接,並且我希望兩者都包含在一起,所以我想問問你是否知道將這兩個腳本結合起來的方法?
嘗試'/標記\/_?大$/GI '看看它是否有幫助。 – Stack0verflow