contenteditable
divといくつかの段落があります。
これが私のコードです:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<div id="main" contenteditable="true"
style="border:solid 1px black; width:300px; height:300px">
<div>Hello world!</div>
<div>
<br>
</div>
<div>This is a paragraph</div>
</div>
</body>
</html>
仮に、「world!Thisis」という文字列を含む範囲を選択したいとします。
どうやってするか?
強調表示するテキストを含むテキストノードを取得したら、簡単です。それらをどのように取得するかは、これをどの程度一般的にする必要があるかによって異なります。現時点では、ユーザーが編集する前に、次のことが機能します。
var mainDiv = document.getElementById("main");
var startNode = mainDiv.firstChild.firstChild;
var endNode = mainDiv.childNodes[2].firstChild;
var range = document.createRange();
range.setStart(startNode, 6); // 6 is the offset of "world" within "Hello world"
range.setEnd(endNode, 7); // 7 is the length of "this is"
var sel = window.getSelection();
sel.removeAllRanges();
sel.addRange(range);