これは非常にうまく機能する私のコードです。ウェブサイトで見つけて、少し修正しました。
<script>
(function ($) {
// custom css expression for a case-insensitive contains()
jQuery.expr[':'].Contains = function(a,i,m){
return (a.textContent || a.innerText || "").toUpperCase().indexOf(m[3].toUpperCase())>=0;
};
function listFilter(header, list) { // header is any element, list is an unordered list
// create and add the filter form to the header
var form = $("<form>").attr({"class":"filterform","action":"#"}),
input = $("<input>").attr({"class":"filterinput","type":"text", "value":"Filterfunktion"});
$(form).append(input).appendTo(header);
$(input)
.change( function () {
var filter = $(this).val();
if(filter) {
// this finds all links in a list that contain the input,
// and hide the ones not containing the input while showing the ones that do
$(list).find("a:not(:Contains(" + filter + "))").parent().fadeOut();
$(list).find("a:Contains(" + filter + ")").parent().fadeIn();
} else {
$(list).find("li").slideDown();
}
return false;
})
.keyup( function () {
// fire the above change event after every letter
$(this).change();
});
}
//ondomready
$(function () {
listFilter($(".filter"), $(".list"));
});
$(function() {
$(".filterinput").focus(function() {
$(this).val('')
});
});
}(jQuery));
</script>
しかし、私がうまくいかないことの1つは、スクリプトが空白を含む文字列を見つけて一致させる必要があり、空白なしで入力する必要があることです。
例:
<li>DCB 112 を持っています。入力フィールドに「DCB 112」と入力すると、正しくフィルタリングされて表示されます。しかし、「DCB112」と入力すると、スクリプトはこれと一致せず、何も表示されません。解決策はありますか?
ポーランドからこんにちは!