こんにちは、私の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>