跨浏览器文本选择
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了跨浏览器文本选择相关的知识,希望对你有一定的参考价值。
function getSelText() {     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.aform.selectedtext.value = txt; } </script> <input type="button" value="Get selection" onmousedown="getSelText()"> <form name=aform > <textarea name="selectedtext" rows="5" cols="20"></textarea> </form>
以上是关于跨浏览器文本选择的主要内容,如果未能解决你的问题,请参考以下文章