Androidデバイスの各タッチエンドイベントのHTMLページから選択したテキストを取得しようとしましたが、選択したテキストを取得できません。
Javascriptコードは:
if(window.getSelection)
{
t = window.getSelection();
}
else if(document.getSelection)
{
t = document.getSelection();
}
else if(document.selection)
{
t = document.selection.createRange().text;
}
前もって感謝します。