recherche

Maison  >  Questions et réponses  >  le corps du texte

javascript - Existe-t-il un plug-in lié à la surbrillance du texte dans la zone de saisie? Pouvez-vous le recommander?

Pour créer une fonction de recherche par mot-clé

迷茫迷茫2741 Il y a quelques jours636

répondre à tous(1)je répondrai

  • 漂亮男人

    漂亮男人2017-05-19 10:18:27

    Si c’est juste un moment fort très ordinaire. . . Vous pouvez faire ceci :

    .hl {
        background-color: yellow; 
    }
    <p class="search-result">搜索结果: SegmentFault ( www.sf.gg ) 是中国领先的开发者社区。
    我们希望为中文开发者提供一个纯粹、高质的技术交流平台,
    与开发者一起学习、交流与成长,创造属于开发者的时代!</p>
    function light($sel, keyword, hightLightClass){
        var text = $sel.html(); 
        var temp = text.split(keyword).join(`<span class="${hightLightClass}">${keyword}</span>`); 
        $sel.html(temp);
    }
    
    light($('.search-result'), '交流', 'hl'); 

    Exemple

    répondre
    0
  • Annulerrépondre