blob: 6b73a21560a0da8e8ed7f695ad51f4eb93d0b4ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html>
<body onload="onLoad()">
<textarea></textarea>
<div id="start"></div>
<div id="end"></div>
<script>
function onLoad() {
var t = document.querySelector("textarea");
t.value = "aaa\nbbb";
t.value = "aaa\nbbb\n";
t.value += "X";
document.getElementById("start").textContent = t.selectionStart;
document.getElementById("end").textContent = t.selectionEnd;
}
</script>
</body>
</html>
|