$(".e-aside-content input[name=searchword]").keypress(function(e){
let text = $(this).val();
$('div[itemprop=articleBody] li,h2').hide().filter(function(i){
return $(this).text().includes(text)
}).show().parent().prev().show()
})
$('.all-class').hide();
$('.find-class').show():