Показать сообщение отдельно
  #3 (permalink)  
Старый 31.07.2014, 13:16
Отправить личное сообщение для Octane Посмотреть профиль Найти все сообщения от Octane  
Регистрация: 10.07.2008
Сообщений: 3,873

Как вариант, чтобы не создавать элемент для каждой буквы, можно попробовать брать смещение схлопнутого выделения по mouseup и смотреть какой символ стоит на этой позиции. Только в Chrome как-то херово работает.
<!DOCTYPE html>
<html lang="en">
<head>
    <title>…</title>
    <meta charset="UTF-8">
    <style>
        body {
            font-size: 200%;
        }
    </style>
</head>
<body>
    <div class="text">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</div>
    <script>
    document.querySelector('.text').addEventListener('mouseup', function (event) {
        var text = event.target.firstChild.nodeValue,
            range = window.getSelection().getRangeAt(0),
            startIndex = range.startOffset;
        if (navigator.userAgent.indexOf('Firefox') != -1) {
            startIndex = Math.max(startIndex - 1, 0);
        }
        alert(text.substr(startIndex, 1));
    });
    </script>
</body>
</html>


Или еще можно попробовать в цикле изменять смещение инстанса Range и сравнивать его координаты (getBoundingClientRect) с координатами клика.

Последний раз редактировалось Octane, 31.07.2014 в 13:20.
Ответить с цитированием