This commit is contained in:
Gregory Szorc 2012-01-17 11:54:07 -08:00
Родитель fb1e3e4673 258dd0b3cb
Коммит 3009b114f4
2 изменённых файлов: 6 добавлений и 3 удалений

Просмотреть файл

@ -4,12 +4,14 @@
<body>
<span contenteditable id="t" style="border: 1px dashed green; min-height: 2px; padding-right: 20px;"> </span></body>
<script>
// Only focus the span to put the caret at its beginning
var sel = window.getSelection();
sel.removeAllRanges();
// Focus the span to put the caret at its beginning.
var area = document.getElementById('t');
area.focus();
// Do nothing else.
</script>
</body>
</html>

Просмотреть файл

@ -4,14 +4,15 @@
<body>
<span contenteditable id="t" style="border: 1px dashed green; min-height: 2px; padding-right: 20px;"> </span></body>
<script>
// Enter a character in the span and delete it
var sel = window.getSelection();
sel.removeAllRanges();
// Focus the span to put the caret at its beginning.
var area = document.getElementById('t');
area.focus();
sendKey("W"); // enter a character
// Enter a character in the span then delete it.
sendChar("W");
sendKey("BACK_SPACE");
</script>
</body>