我试图从 android 设备中每个 touchend 事件的 html 页面中获取选定的文本,但无法获取选定的文本。
Javascript代码是:
if(window.getSelection)
{
t = window.getSelection();
}
else if(document.getSelection)
{
t = document.getSelection();
}
else if(document.selection)
{
t = document.selection.createRange().text;
}
提前致谢。