how to get selected text from iframe with javascript?

后端 未结 5 1670
余生分开走
余生分开走 2020-11-29 08:46

 
  

        
5条回答
  •  一生所求
    2020-11-29 09:14

    This code works in all modern browsers:

    var iframe = document.getElementById('my');
    var idoc = iframe.contentDocument || iframe.contentWindow.document; // ie compatibility
    var text = idoc.getSelection().toString();
    

提交回复
热议问题