我試圖突出顯示搜索條件,它運行良好。問題是我想避免使用1或2個字符的單詞或「the」和「and」。jQuery檢測字符串的長度
如果我使用
var term = $('#q').val().split(/\s+/);
if(term.length < 3){
$('p').highlight(term);
}
將需要輸入值整個字符串,所以它有更多然後3個字母。
所以我想我需要使用
if(term:contains('and')){}
但訣竅是如何將我未強調?
higlihgt函數是從https://raw.github.com/bartaz/sandbox.js/master/jquery.highlight.js – SamotnyPocitac