如何突出显示搜索文本。我有很多链接
最好的例子是。 https://github.com/nmartynenko/jquery-search-plugin 现在我需要在我的示例中实现最好的方法,但它不起作用,这是我的小提琴 http://jsfiddle.net/ravi1989/SCfPQ/
var searcher = $("#realTimeContents").search({
searchType: "highlightSelected",
searchSelector : "div",
scrollTo : true
});
//make sure we find the same text, otherwise clear search postions
function find(up) {
var currentText = searcher.getText();
var text = $(".textSearchvalue_h").val();
alert(text);
if (text != currentText) {
searcher.setText(text);
// alert(getConcurrencesNumber());
}
searcher.nextConcurrence(up);
}
//bind events
$("#prev").click(function(e) {
alert("pre")
e.preventDefault();
find(true);
});
$("#next").click(function(e) {
alert("next")
e.preventDefault();
find(false);
});
$("#search").click(function(e) {
e.preventDefault();
find(true);
});