0

大家好,在我的网络应用程序中,我想打印选定的文本(在这里说段落标签中的内容)。如何在 Android WebView 中做到这一点,如何使用 JavaScript 选择文本?

在此先感谢..

这是我的 JavaScript 代码

<script type="text/JavaScript">

function SelectText()
{
    var txt = '';
     if (window.getSelection)

    {
        txt = window.getSelection();
             }
    else if (document.getSelection)
    {
        txt = document.getSelection();
            }
    else if (document.selection)
    {
        txt = document.selection.createRange().text;
            }
    else return;
document.getElementById("demo").innerHTML=  txt;
}

</script></head>


 <body>
   <p>Hi man how are you?? Hope your doing good..</p>
   <p> id="demo"></p>

  <button> onclick="SelectText()">Selected text</button>

</body>
</html>
4

1 回答 1

1

你写了

<p> id="demo"></p>

它应该是

<p id="demo"></p>

这能解决问题还是拼写错误?

于 2013-04-30T10:19:33.093 回答