我正在做搜索功能。搜索功能工作正常。问题是当我开始搜索时它隐藏了我的按钮(搜索、下一个、上一个)。我会解释更多。
- 搜索单词“Sachin”
- 然后按搜索它在同一页面上显示 sachin 但是当您再次单击搜索/下一个时,它会转到下一个文本但是按钮上一个/下一个/搜索隐藏(转到上面)。我需要在搜索时显示这个按钮。我需要的东西在 div 竞争滚动的地方添加固定高度?
- 这是问题,因为如果用户点击第三次它会在上面然后点击搜索然后搜索项会下降。然后它又会上升。它看起来很敬畏这个词。
我需要在搜索时在页面上修复这些按钮。
http://jsfiddle.net/ravi1989/3xbGW/
var searchIndex = -1;
var searchTermOld ='';
$(document).ready(function(){
$('.searchbox').on('change',function(){
if($(this).val()===''){
var selector= "#realTimeContents";
$(selector+' span.match').each(function(){
$(this).replaceWith($(this).html());
});
}
searchIndex = -1;
$('.searchNext').attr("disabled", "disabled");
$('.searchPrev').attr("disabled", "disabled");
searchTermOld = $(this).val();
});
$('.searchbox').on('keyup',function(){
var selector= "#realTimeContents";
if($(this).val()===''){
$(selector+' span.match').each(function(){
$(this).replaceWith($(this).html());
});
}
if($(this).val() !== searchTermOld){
$(selector+' span.match').each(function(){
$(this).replaceWith($(this).html());
});
searchIndex = -1;
$('.searchNext').attr("disabled", "disabled");
$('.searchPrev').attr("disabled", "disabled");
}
});
$('.search').on('click',function(){
if(searchIndex == -1){
var searchTerm = $('.searchbox').val();
if(searchTerm==''){
alert("Please Insert Text.")
return ;
}
searchAndHighlight(searchTerm);
}
else searchNext();
if($('.match').length >1){
$('.searchNext').removeAttr("disabled");
$('.searchPrev').removeAttr("disabled");
}
});
$('.searchNext').on('click',searchNext);
$('.searchPrev').on('click',searchPrev);
});
function searchAndHighlight(searchTerm) {
if (searchTerm) {
var searchTermRegEx, matches;
var selector= "#realTimeContents";
$(selector+' span.match').each(function(){
$(this).replaceWith($(this).html());
});
try {
searchTermRegEx = new RegExp('('+searchTerm+')', "ig");
} catch (e) {
return false;
}
$('.highlighted').removeClass('highlighted');
matches = $(selector).text().match(searchTermRegEx);
if (matches !==null && matches.length > 0) {
var txt = $(selector).text().replace(searchTermRegEx, '<span class="match">$1</span>');
$(selector).html(txt);
searchIndex++;
$('.match:first').addClass('highlighted');
if($('.match').eq(searchIndex).offset().top > $(window).height()-10){
$(document).scrollTop($('.match').eq(searchIndex).offset().top);
}
return true;
}else{
alert('Search not found.');
}
return false;
}
return false;
}
function searchNext(){
searchIndex++;
if (searchIndex >= $('.match').length) searchIndex = 0;
$('.highlighted').removeClass('highlighted');
$('.match').eq(searchIndex).addClass('highlighted');
if($('.match').eq(searchIndex).offset().top > $(window).height()-10){
$(document).scrollTop($('.match').eq(searchIndex).offset().top);
}
}
function searchPrev(){
searchIndex--;
if (searchIndex < 0) searchIndex = $('.match').length - 1;
$('.highlighted').removeClass('highlighted');
$('.match').eq(searchIndex).addClass('highlighted');
if($('.match').eq(searchIndex).offset().top > $(window).height()-10){
$(document).scrollTop($('.match').eq(searchIndex).offset().top);
}
}