-3
JavaScriptを使用して正規表現の一致をリアルタイムで強調表示しようとしています。 http://regexr.com/のようなサイトに似ています。ライブ正規表現の強調表示
<p id="haystack"> Sample text Sample Text Sample Text Sample Text </p>
<form>
<input id="needle" onkeyup="highlight('haystack')" onkeydown="highlight('haystack')" type="text" placeholder="Enter Pattern" autofocus>
</form>
function highlight(e){
var pattern = document.getElementById('needle');
var consoleText = document.getElementById('haystack').innerHTML;
consoleText = consoleText.replace(pattern.value,"replaced");
document.getElementById('haystack').innerHTML = consoleText;
非常に新しいです。どのようにして効果を達成できますか?
ありがとうございました、私はinnerHTML'は悪である '使い方将来 –
に、より具体的にしてみましょう!代わりに[mark.js](https://markjs.io/)のような既存のプラグインを使用してください。 – dude