2
0

select2.html 631 B

123456789101112131415161718192021
  1. <html>
  2. <body>
  3. <div id="container" style="border: 1px solid #333" contentEditable="true" onMouseUp="checkMe()">Type text here</div>
  4. </body>
  5. <script language="javascript">
  6. function checkMe() {
  7. var txt = "";
  8. if (window.getSelection) {
  9. txt = window.getSelection();
  10. } else if (document.getSelection) {
  11. txt = document.getSelection();
  12. } else if (document.selection) {
  13. txt = document.selection.createRange().text;
  14. }
  15. alert("Selected text is " + txt);
  16. }
  17. </script>
  18. </html>