我写了一个脚本,在页面上搜索字符串并滚动到它。我希望它能突出显示页面上字符串的实例,但脚本的那部分不起作用。
这是我的代码:
$("#search").click(function(){
var thing = $("input#searchItem").val();
$(window).scrollTop($(".content:contains('" + thing + "'):first").offset().top -83);
$('.content').each(function(index, element) {
$(this).find(thing).each(function(i) {
this.html('<i class="found">' + thing + '</i>');
});
});
});