0

こんにちは、私のWebアプリの皆さん、選択したテキストを印刷したかったのです(ここでは段落タグのコンテンツと言ってください)。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 に答える