私が使用しているjQueryのUIオートコンプリートのプラグインを。ドロップダウン結果で検索文字シーケンスを強調表示する方法はありますか?
たとえば、データとして「foo bar」があり、「foo」と入力すると、次のようにドロップダウンに「foo bar」が表示されます。
私が使用しているjQueryのUIオートコンプリートのプラグインを。ドロップダウン結果で検索文字シーケンスを強調表示する方法はありますか?
たとえば、データとして「foo bar」があり、「foo」と入力すると、次のようにドロップダウンに「foo bar」が表示されます。
回答:
はい、モンキーパッチのオートコンプリートであれば可能です。
jQuery UIのv1.8rc3に含まれるオートコンプリートウィジェットでは、候補のポップアップがオートコンプリートウィジェットの_renderMenu関数で作成されます。この関数は次のように定義されています:
_renderMenu: function( ul, items ) {
var self = this;
$.each( items, function( index, item ) {
self._renderItem( ul, item );
});
},
_renderItem関数は次のように定義されています。
_renderItem: function( ul, item) {
return $( "<li></li>" )
.data( "item.autocomplete", item )
.append( "<a>" + item.label + "</a>" )
.appendTo( ul );
},
したがって、必要なのは、その_renderItem fnを、目的の効果を生み出す独自の作成に置き換えることです。ライブラリの内部関数を再定義するこの手法は、モンキーパッチと呼ばれています。ここに私がそれをした方法があります:
function monkeyPatchAutocomplete() {
// don't really need this, but in case I did, I could store it and chain
var oldFn = $.ui.autocomplete.prototype._renderItem;
$.ui.autocomplete.prototype._renderItem = function( ul, item) {
var re = new RegExp("^" + this.term) ;
var t = item.label.replace(re,"<span style='font-weight:bold;color:Blue;'>" +
this.term +
"</span>");
return $( "<li></li>" )
.data( "item.autocomplete", item )
.append( "<a>" + t + "</a>" )
.appendTo( ul );
};
}
その関数を一度だけ呼び出し$(document).ready(...)
ます。
さて、これはハックです:
リストにレンダリングされたすべてのアイテムに対して作成されたregexp objがあります。その正規表現オブジェクトはすべてのアイテムで再利用されるべきです。
完成したパーツのフォーマットに使用されるcssクラスはありません。インラインスタイルです。
つまり、同じページに複数のオートコンプリートがあった場合、それらはすべて同じ扱いになります。CSSスタイルはそれを解決します。
...しかし、それは主要なテクニックを示しており、あなたの基本的な要件に対して機能します。
更新された作業例:http : //output.jsbin.com/qixaxinuhe
入力された文字の大文字小文字を使用するのではなく、一致文字列の大文字小文字を保持するには、次の行を使用します。
var t = item.label.replace(re,"<span style='font-weight:bold;color:Blue;'>" +
"$&" +
"</span>");
言い換えれば、上記の元のコードから始めて、あなただけ交換する必要があるthis.term
と"$&"
。
編集
上記は、ページ上のすべてのオートコンプリートウィジェットを変更します。1つだけ変更したい場合は、この質問を参照してください:
ページ上のオートコンプリートの* 1つだけ*のインスタンスにパッチを適用する方法は?
var re = new RegExp(this.term, "i");
!
これも機能します:
$.ui.autocomplete.prototype._renderItem = function (ul, item) {
item.label = item.label.replace(new RegExp("(?![^&;]+;)(?!<[^<>]*)(" + $.ui.autocomplete.escapeRegex(this.term) + ")(?![^<>]*>)(?![^&;]+;)", "gi"), "<strong>$1</strong>");
return $("<li></li>")
.data("item.autocomplete", item)
.append("<a>" + item.label + "</a>")
.appendTo(ul);
};
@JörnZaeffererと@Cheesoの応答の組み合わせ。
$().autocomplete()
超役立つ。ありがとうございました。+1。
以下は、「文字列は用語で始まる必要がある」に基づいてソートされたライトバージョンです。
function hackAutocomplete(){
$.extend($.ui.autocomplete, {
filter: function(array, term){
var matcher = new RegExp("^" + term, "i");
return $.grep(array, function(value){
return matcher.test(value.label || value.value || value);
});
}
});
}
hackAutocomplete();
ここに、機能的な完全な例があります:
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Autocomplete - jQuery</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css">
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<label for="search"></label>
<input type="text" name="search" id="search" />
</form>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
<script>
$(function(){
$.ui.autocomplete.prototype._renderItem = function (ul, item) {
item.label = item.label.replace(new RegExp("(?![^&;]+;)(?!<[^<>]*)(" + $.ui.autocomplete.escapeRegex(this.term) + ")(?![^<>]*>)(?![^&;]+;)", "gi"), "<strong>$1</strong>");
return $("<li></li>")
.data("item.autocomplete", item)
.append("<a>" + item.label + "</a>")
.appendTo(ul);
};
var availableTags = [
"JavaScript",
"ActionScript",
"C++",
"Delphi",
"Cobol",
"Java",
"Ruby",
"Python",
"Perl",
"Groove",
"Lisp",
"Pascal",
"Assembly",
"Cliper",
];
$('#search').autocomplete({
source: availableTags,
minLength: 3
});
});
</script>
</body>
</html>
お役に立てれば
jQueryUI 1.9.0は、_renderItemの動作を変更します。
以下のコードは、この変更を考慮に入れており、JörnZaeffererのjQuery Autocompleteプラグインを使用してハイライトマッチングを実行していた方法も示しています。検索語全体の個々の語がすべて強調表示されます。
KnockoutとjqAutoの使用に移行して以来、これは結果をスタイル設定するはるかに簡単な方法であることがわかりました。
function monkeyPatchAutocomplete() {
$.ui.autocomplete.prototype._renderItem = function (ul, item) {
// Escape any regex syntax inside this.term
var cleanTerm = this.term.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&');
// Build pipe separated string of terms to highlight
var keywords = $.trim(cleanTerm).replace(' ', ' ').split(' ').join('|');
// Get the new label text to use with matched terms wrapped
// in a span tag with a class to do the highlighting
var re = new RegExp("(" + keywords + ")", "gi");
var output = item.label.replace(re,
'<span class="ui-menu-item-highlight">$1</span>');
return $("<li>")
.append($("<a>").html(output))
.appendTo(ul);
};
};
$(function () {
monkeyPatchAutocomplete();
});
.jqAutocompleteMatch { font-weight: bold; }
this.term
for regex をエスケープするロジックは、処理を行う前に使用する必要があります。これを行う方法に対する多くの回答の1つとして、JavaScript正規表現で使用するエスケープ文字列を参照してください。
さらに簡単な方法として、これを試してください:
$('ul: li: a[class=ui-corner-all]').each (function (){
//grab each text value
var text1 = $(this).text();
//grab user input from the search box
var val = $('#s').val()
//convert
re = new RegExp(val, "ig")
//match with the converted value
matchNew = text1.match(re);
//Find the reg expression, replace it with blue coloring/
text = text1.replace(matchNew, ("<span style='font-weight:bold;color:green;'>") + matchNew + ("</span>"));
$(this).html(text)
});
}
これがTed de Koningのソリューションのリハッシュです。以下が含まれます:
$.ui.autocomplete.prototype._renderItem = function (ul, item) {
var sNeedle = item.label;
var iTermLength = this.term.length;
var tStrPos = new Array(); //Positions of this.term in string
var iPointer = 0;
var sOutput = '';
//Change style here
var sPrefix = '<strong style="color:#3399FF">';
var sSuffix = '</strong>';
//Find all occurences positions
tTemp = item.label.toLowerCase().split(this.term.toLowerCase());
var CharCount = 0;
tTemp[-1] = '';
for(i=0;i<tTemp.length;i++){
CharCount += tTemp[i-1].length;
tStrPos[i] = CharCount + (i * iTermLength) + tTemp[i].length
}
//Apply style
i=0;
if(tStrPos.length > 0){
while(iPointer < sNeedle.length){
if(i<=tStrPos.length){
//Needle
if(iPointer == tStrPos[i]){
sOutput += sPrefix + sNeedle.substring(iPointer, iPointer + iTermLength) + sSuffix;
iPointer += iTermLength;
i++;
}
else{
sOutput += sNeedle.substring(iPointer, tStrPos[i]);
iPointer = tStrPos[i];
}
}
}
}
return $("<li></li>")
.data("item.autocomplete", item)
.append("<a>" + sOutput + "</a>")
.appendTo(ul);
};
これは、正規表現を必要とせず、ラベルの複数の結果に一致するバージョンです。
$.ui.autocomplete.prototype._renderItem = function (ul, item) {
var highlighted = item.label.split(this.term).join('<strong>' + this.term + '</strong>');
return $("<li></li>")
.data("item.autocomplete", item)
.append("<a>" + highlighted + "</a>")
.appendTo(ul);
};
コンボボックスのデモを見てください。結果の強調表示が含まれています。http://jqueryui.com/demos/autocomplete/#combobox
そこで使用されている正規表現は、htmlの結果も処理します。
これが私のバージョンです:
function highlightText(text, $node) {
var searchText = $.trim(text).toLowerCase(),
currentNode = $node.get(0).firstChild,
matchIndex,
newTextNode,
newSpanNode;
while ((matchIndex = currentNode.data.toLowerCase().indexOf(searchText)) >= 0) {
newTextNode = currentNode.splitText(matchIndex);
currentNode = newTextNode.splitText(searchText.length);
newSpanNode = document.createElement("span");
newSpanNode.className = "highlight";
currentNode.parentNode.insertBefore(newSpanNode, currentNode);
newSpanNode.appendChild(newTextNode);
}
}
$("#autocomplete").autocomplete({
source: data
}).data("ui-autocomplete")._renderItem = function (ul, item) {
var $a = $("<a></a>").text(item.label);
highlightText(this.term, $a);
return $("<li></li>").append($a).appendTo(ul);
};
次のコードを使用できます。
lib:
$.widget("custom.highlightedautocomplete", $.ui.autocomplete, {
_renderItem: function (ul, item) {
var $li = $.ui.autocomplete.prototype._renderItem.call(this,ul,item);
//any manipulation with li
return $li;
}
});
とロジック:
$('selector').highlightedautocomplete({...});
オリジナルのプラグインプロトタイプ_renderItem
を上書きせずにオーバーライドできるカスタムウィジェットを作成します_renderItem
。
私の例では、元のレンダリング関数を使用してコードを単純化しました
オートコンプリートのビューが異なるさまざまな場所でプラグインを使用し、コードを壊したくない場合は重要です。
代わりにサードパーティのプラグインを使用する場合、ハイライトオプションがあります:http : //docs.jquery.com/Plugins/Autocomplete/autocomplete#url_or_dataoptions
(「オプション」タブを参照)